diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-09-19 17:41:07 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-09-19 17:41:33 +0200 |
commit | 7761e44d186deff278e51814bdec0c25e8e1a09c (patch) | |
tree | 03e9879770a0e847bdf5bd8de624bfe9e96f8809 /src/video_core/engines/maxwell_3d.cpp | |
parent | Rasterizer: Address Feedback and conscerns. (diff) | |
download | yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.tar yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.tar.gz yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.tar.bz2 yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.tar.lz yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.tar.xz yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.tar.zst yuzu-7761e44d186deff278e51814bdec0c25e8e1a09c.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 4 |
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 d1f63a5eb..b8f071bc0 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -486,7 +486,7 @@ void Maxwell3D::FlushMMEInlineDraw() { "Illegal combination of instancing parameters"); const bool is_indexed = mme_draw.current_mode == MMMEDrawMode::Indexed; - rasterizer.AccelerateDrawMultiBatch(is_indexed); + rasterizer.DrawMultiBatch(is_indexed); if (debug_context) { debug_context->OnEvent(Tegra::DebugContext::Event::FinishedPrimitiveBatch, nullptr); @@ -657,7 +657,7 @@ void Maxwell3D::DrawArrays() { } const bool is_indexed{regs.index_array.count && !regs.vertex_buffer.count}; - rasterizer.AccelerateDrawBatch(is_indexed); + rasterizer.DrawBatch(is_indexed); if (debug_context) { debug_context->OnEvent(Tegra::DebugContext::Event::FinishedPrimitiveBatch, nullptr); |