TranslationFlags.cs 168 B

12345678910
  1. namespace Ryujinx.Graphics.Shader.Translation
  2. {
  3. public enum TranslationFlags
  4. {
  5. None = 0,
  6. Compute = 1 << 0,
  7. DebugMode = 1 << 1
  8. }
  9. }