GalTextureSource.cs 232 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public enum GalTextureSource
  4. {
  5. Zero = 0,
  6. Red = 2,
  7. Green = 3,
  8. Blue = 4,
  9. Alpha = 5,
  10. OneInt = 6,
  11. OneFloat = 7
  12. }
  13. }