aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/CompareOp.cs
blob: 8141ecca9ac33c047aa000f1d59f89bfdd590b23 (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,
    }
}