1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using System; namespace Ryujinx.Graphics.Shader.IntermediateRepresentation { [Flags] enum TextureFlags { None = 0, Bindless = 1 << 0, Gather = 1 << 1, Derivatives = 1 << 2, IntCoords = 1 << 3, LodBias = 1 << 4, LodLevel = 1 << 5, Offset = 1 << 6, Offsets = 1 << 7 } }