aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalComparisonOp.cs
blob: f26a7753371f2677d524e5df8c32c2407bf41178 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Gal
{
    public enum GalComparisonOp
    {
        Never    = 0x1,
        Less     = 0x2,
        Equal    = 0x3,
        Lequal   = 0x4,
        Greater  = 0x5,
        NotEqual = 0x6,
        Gequal   = 0x7,
        Always   = 0x8
    }
}