IrConsts.cs 175 B

12345678
  1. namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
  2. {
  3. static class IrConsts
  4. {
  5. public const int False = 0;
  6. public const int True = -1;
  7. }
  8. }