ChClassId.cs 563 B

1234567891011121314151617181920
  1. namespace Ryujinx.Graphics
  2. {
  3. enum ChClassId
  4. {
  5. Host1X = 0x1,
  6. VideoEncodeMpeg = 0x20,
  7. VideoEncodeNvEnc = 0x21,
  8. VideoStreamingVi = 0x30,
  9. VideoStreamingIsp = 0x32,
  10. VideoStreamingIspB = 0x34,
  11. VideoStreamingViI2c = 0x36,
  12. GraphicsVic = 0x5d,
  13. Graphics3D = 0x60,
  14. GraphicsGpu = 0x61,
  15. Tsec = 0xe0,
  16. TsecB = 0xe1,
  17. NvJpg = 0xc0,
  18. NvDec = 0xf0
  19. }
  20. }