aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/CompareOp.cs
blob: 358ed2b46c92c189fba952ef5bcd860d3147c892 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Ryujinx.Graphics.GAL
{
    public enum CompareOp
    {
        Never = 1,
        Less,
        Equal,
        LessOrEqual,
        Greater,
        NotEqual,
        GreaterOrEqual,
        Always,

        NeverGl          = 0x200,
        LessGl           = 0x201,
        EqualGl          = 0x202,
        LessOrEqualGl    = 0x203,
        GreaterGl        = 0x204,
        NotEqualGl       = 0x205,
        GreaterOrEqualGl = 0x206,
        AlwaysGl         = 0x207,
    }
}