MethodOffset.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. enum MethodOffset
  4. {
  5. Inline2MemoryParams = 0x60,
  6. Inline2MemoryExecute = 0x6c,
  7. Inline2MemoryPushData = 0x6d,
  8. CopyDstTexture = 0x80,
  9. CopySrcTexture = 0x8c,
  10. DispatchParamsAddress = 0xad,
  11. Dispatch = 0xaf,
  12. CopyBufferParams = 0x100,
  13. CopyBufferSwizzle = 0x1c2,
  14. CopyBufferDstTexture = 0x1c3,
  15. CopyBufferSrcTexture = 0x1ca,
  16. RtColorState = 0x200,
  17. CopyTextureControl = 0x223,
  18. CopyRegion = 0x22c,
  19. ViewportTransform = 0x280,
  20. ViewportExtents = 0x300,
  21. VertexBufferDrawState = 0x35d,
  22. ClearColors = 0x360,
  23. ClearDepthValue = 0x364,
  24. ClearStencilValue = 0x368,
  25. DepthBiasState = 0x370,
  26. StencilBackMasks = 0x3d5,
  27. InvalidateTextures = 0x3dd,
  28. RtDepthStencilState = 0x3f8,
  29. VertexAttribState = 0x458,
  30. RtDepthStencilSize = 0x48a,
  31. DepthTestEnable = 0x4b3,
  32. DepthWriteEnable = 0x4ba,
  33. DepthTestFunc = 0x4c3,
  34. BlendEnable = 0x4d8,
  35. StencilTestState = 0x4e0,
  36. FirstVertex = 0x50d,
  37. FirstInstance = 0x50e,
  38. ResetCounter = 0x54c,
  39. RtDepthStencilEnable = 0x54e,
  40. ConditionState = 0x554,
  41. SamplerPoolState = 0x557,
  42. DepthBiasFactor = 0x55b,
  43. TexturePoolState = 0x55d,
  44. StencilBackTestState = 0x565,
  45. DepthBiasUnits = 0x56f,
  46. RtMsaaMode = 0x574,
  47. ShaderBaseAddress = 0x582,
  48. PrimitiveRestartState = 0x591,
  49. IndexBufferState = 0x5f2,
  50. DepthBiasClamp = 0x61f,
  51. VertexBufferInstanced = 0x620,
  52. FaceState = 0x646,
  53. RtColorMask = 0x680,
  54. ReportState = 0x6c0,
  55. VertexBufferState = 0x700,
  56. BlendState = 0x780,
  57. VertexBufferEndAddress = 0x7c0,
  58. ShaderState = 0x800,
  59. UniformBufferState = 0x8e0,
  60. TextureBufferIndex = 0x982
  61. }
  62. }