StencilOp.cs
1 namespace Ryujinx.Graphics.GAL 2 { 3 public enum StencilOp 4 { 5 Keep = 1, 6 Zero, 7 Replace, 8 IncrementAndClamp, 9 DecrementAndClamp, 10 Invert, 11 IncrementAndWrap, 12 DecrementAndWrap, 13 14 ZeroGl = 0x0, 15 InvertGl = 0x150a, 16 KeepGl = 0x1e00, 17 ReplaceGl = 0x1e01, 18 IncrementAndClampGl = 0x1e02, 19 DecrementAndClampGl = 0x1e03, 20 IncrementAndWrapGl = 0x8507, 21 DecrementAndWrapGl = 0x8508, 22 } 23 }