diff options
| author | 2022-03-26 13:43:00 +0100 | |
|---|---|---|
| committer | 2022-10-06 21:00:53 +0200 | |
| commit | b2099fbdcc3cb213aec8f836033fb02c4b6bbd09 (patch) | |
| tree | 035a4d17df139a9e4b64322459967c192d444da4 /src | |
| parent | Memory Manager: ensure safety of GPU to CPU address. (diff) | |
| download | yuzu-b2099fbdcc3cb213aec8f836033fb02c4b6bbd09.tar.gz yuzu-b2099fbdcc3cb213aec8f836033fb02c4b6bbd09.tar.xz yuzu-b2099fbdcc3cb213aec8f836033fb02c4b6bbd09.zip | |
Maxwell3D: Add small_index_2
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 950c70dcd..add1ccebe 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp | |||
| @@ -219,6 +219,8 @@ void Maxwell3D::ProcessMethodCall(u32 method, u32 argument, u32 nonshadow_argume | |||
| 219 | regs.index_array.count = regs.small_index_2.count; | 219 | regs.index_array.count = regs.small_index_2.count; |
| 220 | regs.index_array.first = regs.small_index_2.first; | 220 | regs.index_array.first = regs.small_index_2.first; |
| 221 | dirty.flags[VideoCommon::Dirty::IndexBuffer] = true; | 221 | dirty.flags[VideoCommon::Dirty::IndexBuffer] = true; |
| 222 | // a macro calls this one over and over, should it increase instancing? | ||
| 223 | // Used by Hades and likely other Vulkan games. | ||
| 222 | return DrawArrays(); | 224 | return DrawArrays(); |
| 223 | case MAXWELL3D_REG_INDEX(topology_override): | 225 | case MAXWELL3D_REG_INDEX(topology_override): |
| 224 | use_topology_override = true; | 226 | use_topology_override = true; |