using System; namespace Ryujinx.Graphics.Gpu.Image { /// /// Texture search flags, defines texture information comparison rules. /// [Flags] enum TextureSearchFlags { None = 0, ForSampler = 1 << 1, ForCopy = 1 << 2, WithUpscale = 1 << 3, NoCreate = 1 << 4 } }