blob: 01553e50c979c9999cb1083e8b3b558037d2bab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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,
}
}
|