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