mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:28:47 +00:00
16 lines
334 B
C#
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
|
|
}
|
|
}
|