aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs
blob: 0bc9eb92c74c243162c00aaf099de3a3dc0c0cc1 (plain)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Graphics.Gpu.Image
{
    enum SamplerMipFilter
    {
        None = 1,
        Nearest,
        Linear
    }
}