ShuffleType.cs 170 B

12345678910
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. enum ShuffleType
  4. {
  5. Indexed = 0,
  6. Up = 1,
  7. Down = 2,
  8. Butterfly = 3
  9. }
  10. }