TextureSwizzle.cs 245 B

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