aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs
blob: cc9d6cc20e2f928a762c55dc1dc8cf807b96eb5a (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
{
    static class IrConsts
    {
        public const int False = 0;
        public const int True = -1;
    }
}