AstBlockType.cs 171 B

123456789101112
  1. namespace Ryujinx.Graphics.Shader.StructuredIr
  2. {
  3. enum AstBlockType
  4. {
  5. DoWhile,
  6. If,
  7. Else,
  8. ElseIf,
  9. Main,
  10. While
  11. }
  12. }