1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-30 12:01:32 -08:00
2020-01-09 02:13:00 +01:00

16 lines
334 B
C#

namespace Ryujinx.Graphics.Gpu.Image
{
/// <summary>
/// Represents a filter used with texture minification linear filtering.
/// </summary>
/// <remarks>
/// This feature is only supported on NVIDIA GPUs.
/// </remarks>
enum ReductionFilter
{
Average,
Minimum,
Maximum
}
}