IntegerShift.cs 151 B

123456789
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. enum IntegerShift
  4. {
  5. NoShift = 0,
  6. ShiftRight = 1,
  7. ShiftLeft = 2
  8. }
  9. }