aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/StencilOp.cs
blob: f0ac829e67030d49796462d974ad279468b4c8a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.GAL
{
    public enum StencilOp
    {
        Keep = 1,
        Zero,
        Replace,
        IncrementAndClamp,
        DecrementAndClamp,
        Invert,
        IncrementAndWrap,
        DecrementAndWrap
    }
}