29a825b4 ^
1876b346 ^
9becbd7d ^
1 2
3 4
5
6 7 8 9
10 11 12
13
14
using System; namespace Ryujinx.Graphics.Shader.Translation { [Flags] public enum TranslationFlags { None = 0, VertexA = 1 << 0, Compute = 1 << 1, DebugMode = 1 << 2, } }