1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-20 15:51:55 -08:00

16 lines
334 B
C#
Raw Normal View History

2019-10-13 03:02:07 -03:00
namespace Ryujinx.Graphics.Gpu.Image
{
/// <summary>
/// Represents a filter used with texture minification linear filtering.
/// </summary>
2020-01-01 12:39:09 -03:00
/// <remarks>
/// This feature is only supported on NVIDIA GPUs.
/// </remarks>
2019-10-13 03:02:07 -03:00
enum ReductionFilter
{
Average,
Minimum,
Maximum
}
}