NvGpuEngine2dReg.cs 732 B

12345678910111213141516171819202122232425
  1. namespace Ryujinx.Graphics
  2. {
  3. enum NvGpuEngine2dReg
  4. {
  5. DstFormat = 0x80,
  6. DstLinear = 0x81,
  7. DstBlockDimensions = 0x82,
  8. DstDepth = 0x83,
  9. DstLayer = 0x84,
  10. DstPitch = 0x85,
  11. DstWidth = 0x86,
  12. DstHeight = 0x87,
  13. DstAddress = 0x88,
  14. SrcFormat = 0x8c,
  15. SrcLinear = 0x8d,
  16. SrcBlockDimensions = 0x8e,
  17. SrcDepth = 0x8f,
  18. SrcLayer = 0x90,
  19. SrcPitch = 0x91,
  20. SrcWidth = 0x92,
  21. SrcHeight = 0x93,
  22. SrcAddress = 0x94,
  23. CopyOperation = 0xab
  24. }
  25. }