ViewportSwizzle.cs 411 B

12345678910111213141516171819
  1. using System.Diagnostics.CodeAnalysis;
  2. namespace Ryujinx.Graphics.GAL
  3. {
  4. [SuppressMessage("Design", "CA1069: Enums values should not be duplicated")]
  5. public enum ViewportSwizzle
  6. {
  7. PositiveX = 0,
  8. NegativeX = 1,
  9. PositiveY = 2,
  10. NegativeY = 3,
  11. PositiveZ = 4,
  12. NegativeZ = 5,
  13. PositiveW = 6,
  14. NegativeW = 7,
  15. NegativeFlag = 1,
  16. }
  17. }