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