ReductionFilter.cs
1 namespace Ryujinx.Graphics.Gpu.Image 2 { 3 /// <summary> 4 /// Represents a filter used with texture minification linear filtering. 5 /// </summary> 6 /// <remarks> 7 /// This feature is only supported on NVIDIA GPUs. 8 /// </remarks> 9 enum ReductionFilter 10 { 11 Average, 12 Minimum, 13 Maximum, 14 } 15 }