OpCode.cs 315 B

123456789101112131415161718192021
  1. namespace Ryujinx.Graphics.Host1x
  2. {
  3. enum OpCode
  4. {
  5. SetClass,
  6. Incr,
  7. NonIncr,
  8. Mask,
  9. Imm,
  10. Restart,
  11. Gather,
  12. SetStrmId,
  13. SetAppId,
  14. SetPyld,
  15. IncrW,
  16. NonIncrW,
  17. GatherW,
  18. RestartW,
  19. Extend
  20. }
  21. }