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