aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
blob: 17beb12933c2691a0d7c19709622a081c878954f (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Graphics.Gpu.Image
{
    /// <summary>
    /// Sampler texture minification filter.
    /// </summary>
    enum SamplerMinFilter
    {
        Nearest = 1,
        Linear
    }
}