TextureSwizzle.cs 241 B

1234567891011
  1. namespace Ryujinx.Graphics.Gpu
  2. {
  3. public enum TextureSwizzle
  4. {
  5. _1dBuffer = 0,
  6. PitchColorKey = 1,
  7. Pitch = 2,
  8. BlockLinear = 3,
  9. BlockLinearColorKey = 4
  10. }
  11. }