NvGpuEngine3dReg.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. namespace Ryujinx.Graphics
  2. {
  3. enum NvGpuEngine3dReg
  4. {
  5. FrameBufferNAddress = 0x200,
  6. FrameBufferNWidth = 0x202,
  7. FrameBufferNHeight = 0x203,
  8. FrameBufferNFormat = 0x204,
  9. FrameBufferNBlockDim = 0x205,
  10. ViewportNScaleX = 0x280,
  11. ViewportNScaleY = 0x281,
  12. ViewportNScaleZ = 0x282,
  13. ViewportNTranslateX = 0x283,
  14. ViewportNTranslateY = 0x284,
  15. ViewportNTranslateZ = 0x285,
  16. ViewportNHoriz = 0x300,
  17. ViewportNVert = 0x301,
  18. DepthRangeNNear = 0x302,
  19. DepthRangeNFar = 0x303,
  20. VertexArrayFirst = 0x35d,
  21. VertexArrayCount = 0x35e,
  22. ClearNColor = 0x360,
  23. ClearDepth = 0x364,
  24. ClearStencil = 0x368,
  25. StencilBackFuncRef = 0x3d5,
  26. StencilBackMask = 0x3d6,
  27. StencilBackFuncMask = 0x3d7,
  28. ColorMaskCommon = 0x3e4,
  29. RTSeparateFragData = 0x3eb,
  30. ZetaAddress = 0x3f8,
  31. ZetaFormat = 0x3fa,
  32. ZetaBlockDimensions = 0x3fb,
  33. ZetaLayerStride = 0x3fc,
  34. VertexAttribNFormat = 0x458,
  35. RTControl = 0x487,
  36. ZetaHoriz = 0x48a,
  37. ZetaVert = 0x48b,
  38. ZetaArrayMode = 0x48c,
  39. DepthTestEnable = 0x4b3,
  40. IBlendEnable = 0x4b9,
  41. DepthWriteEnable = 0x4ba,
  42. DepthTestFunction = 0x4c3,
  43. BlendSeparateAlpha = 0x4cf,
  44. BlendEquationRgb = 0x4d0,
  45. BlendFuncSrcRgb = 0x4d1,
  46. BlendFuncDstRgb = 0x4d2,
  47. BlendEquationAlpha = 0x4d3,
  48. BlendFuncSrcAlpha = 0x4d4,
  49. BlendFuncDstAlpha = 0x4d6,
  50. BlendEnableMaster = 0x4d7,
  51. IBlendNEnable = 0x4d8,
  52. StencilEnable = 0x4e0,
  53. StencilFrontOpFail = 0x4e1,
  54. StencilFrontOpZFail = 0x4e2,
  55. StencilFrontOpZPass = 0x4e3,
  56. StencilFrontFuncFunc = 0x4e4,
  57. StencilFrontFuncRef = 0x4e5,
  58. StencilFrontFuncMask = 0x4e6,
  59. StencilFrontMask = 0x4e7,
  60. VertexArrayElemBase = 0x50d,
  61. VertexArrayInstBase = 0x50e,
  62. ZetaEnable = 0x54e,
  63. TexHeaderPoolOffset = 0x55d,
  64. TexSamplerPoolOffset = 0x557,
  65. StencilTwoSideEnable = 0x565,
  66. StencilBackOpFail = 0x566,
  67. StencilBackOpZFail = 0x567,
  68. StencilBackOpZPass = 0x568,
  69. StencilBackFuncFunc = 0x569,
  70. FrameBufferSrgb = 0x56e,
  71. ShaderAddress = 0x582,
  72. VertexBeginGl = 0x586,
  73. PrimRestartEnable = 0x591,
  74. PrimRestartIndex = 0x592,
  75. IndexArrayAddress = 0x5f2,
  76. IndexArrayEndAddr = 0x5f4,
  77. IndexArrayFormat = 0x5f6,
  78. IndexBatchFirst = 0x5f7,
  79. IndexBatchCount = 0x5f8,
  80. VertexArrayNInstance = 0x620,
  81. CullFaceEnable = 0x646,
  82. FrontFace = 0x647,
  83. CullFace = 0x648,
  84. ColorMaskN = 0x680,
  85. QueryAddress = 0x6c0,
  86. QuerySequence = 0x6c2,
  87. QueryControl = 0x6c3,
  88. VertexArrayNControl = 0x700,
  89. VertexArrayNAddress = 0x701,
  90. VertexArrayNDivisor = 0x703,
  91. IBlendNSeparateAlpha = 0x780,
  92. IBlendNEquationRgb = 0x781,
  93. IBlendNFuncSrcRgb = 0x782,
  94. IBlendNFuncDstRgb = 0x783,
  95. IBlendNEquationAlpha = 0x784,
  96. IBlendNFuncSrcAlpha = 0x785,
  97. IBlendNFuncDstAlpha = 0x786,
  98. VertexArrayNEndAddr = 0x7c0,
  99. ShaderNControl = 0x800,
  100. ShaderNOffset = 0x801,
  101. ShaderNMaxGprs = 0x803,
  102. ShaderNType = 0x804,
  103. ConstBufferSize = 0x8e0,
  104. ConstBufferAddress = 0x8e1,
  105. ConstBufferOffset = 0x8e3,
  106. TextureCbIndex = 0x982
  107. }
  108. }