ViewportSwizzle.cs 230 B

1234567891011121314
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public enum ViewportSwizzle
  4. {
  5. PositiveX,
  6. NegativeX,
  7. PositiveY,
  8. NegativeY,
  9. PositiveZ,
  10. NegativeZ,
  11. PositiveW,
  12. NegativeW
  13. }
  14. }