aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs
blob: b965f0c367fd73857e0738d85db3c1c9865ea333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.Gpu.Image
{
    /// <summary>
    /// Sampler texture mipmap level filter.
    /// </summary>
    enum SamplerMipFilter
    {
        None = 1,
        Nearest,
        Linear,
    }
}