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