aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
blob: a5c951b5394362dfc33200ab081cc7603ebd88c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Ryujinx.Graphics.Gpu.Image
{
    [Flags]
    enum TextureSearchFlags
    {
        None     = 0,
        IgnoreMs = 1 << 0,
        Strict   = 1 << 1 | Sampler,
        Sampler  = 1 << 2
    }
}