summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-02-14 22:09:37 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-14 22:09:40 +0100
commit91aa58e41072e648cd1d43d284b08c2a01af08a2 (patch)
treea8d4f0ab607c9e0868cdb4da65163318312a714d /src/video_core/engines
parentMerge pull request #3401 from FernandoS27/synchronization (diff)
downloadyuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.tar
yuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.tar.gz
yuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.tar.bz2
yuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.tar.lz
yuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.tar.xz
yuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.tar.zst
yuzu-91aa58e41072e648cd1d43d284b08c2a01af08a2.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 0b3e8749b..5a74d1c2a 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -482,7 +482,7 @@ void Maxwell3D::FlushMMEInlineDraw() {
const bool is_indexed = mme_draw.current_mode == MMEDrawMode::Indexed;
if (ShouldExecute()) {
- rasterizer.DrawMultiBatch(is_indexed);
+ rasterizer.Draw(is_indexed, true);
}
// TODO(bunnei): Below, we reset vertex count so that we can use these registers to determine if
@@ -647,7 +647,7 @@ void Maxwell3D::DrawArrays() {
const bool is_indexed{regs.index_array.count && !regs.vertex_buffer.count};
if (ShouldExecute()) {
- rasterizer.DrawBatch(is_indexed);
+ rasterizer.Draw(is_indexed, false);
}
// TODO(bunnei): Below, we reset vertex count so that we can use these registers to determine if