StencilOp.cs 544 B

1234567891011121314151617181920212223
  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. ZeroGl = 0x0,
  14. InvertGl = 0x150a,
  15. KeepGl = 0x1e00,
  16. ReplaceGl = 0x1e01,
  17. IncrementAndClampGl = 0x1e02,
  18. DecrementAndClampGl = 0x1e03,
  19. IncrementAndWrapGl = 0x8507,
  20. DecrementAndWrapGl = 0x8508
  21. }
  22. }