This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ryujinx/Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs

14 lines
297 B
C#

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
}
}