TranslationFlags.cs 208 B

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