aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalComparisonOp.cs
blob: ddddecebb43e4738f1912cc4faa9abdd8eaa49f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Gal
{
    public enum GalComparisonOp
    {
        Never    = 0x200,
        Less     = 0x201,
        Equal    = 0x202,
        Lequal   = 0x203,
        Greater  = 0x204,
        NotEqual = 0x205,
        Gequal   = 0x206,
        Always   = 0x207
    }
}