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