IntegerType.cs 214 B

1234567891011121314
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. enum IntegerType
  4. {
  5. U8 = 0,
  6. U16 = 1,
  7. U32 = 2,
  8. U64 = 3,
  9. S8 = 4,
  10. S16 = 5,
  11. S32 = 6,
  12. S64 = 7
  13. }
  14. }