VideoType.cs 241 B

123456789101112131415
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. enum VideoType
  4. {
  5. U8 = 0,
  6. U16 = 1,
  7. U32 = 2,
  8. Signed = 1 << 2,
  9. S8 = Signed | U8,
  10. S16 = Signed | U16,
  11. S32 = Signed | U32
  12. }
  13. }