SwizzleComponent.cs 162 B

123456789101112
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public enum SwizzleComponent
  4. {
  5. Zero,
  6. One,
  7. Red,
  8. Green,
  9. Blue,
  10. Alpha
  11. }
  12. }