TextureSwizzle.cs 237 B

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