summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-10-20 08:43:17 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-10-20 08:43:17 +0200
commite3107788e6dce7368897c7201cb7c60a2d0505ff (patch)
tree7db7c68016f13d944e7c9fae35412a665ff0996f /src/video_core/engines/maxwell_3d.cpp
parentMerge pull request #3001 from bunnei/fix-clang-error (diff)
downloadyuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.tar
yuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.tar.gz
yuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.tar.bz2
yuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.tar.lz
yuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.tar.xz
yuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.tar.zst
yuzu-e3107788e6dce7368897c7201cb7c60a2d0505ff.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index c5ec7d9f1..59976943a 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -479,7 +479,7 @@ void Maxwell3D::CallMethodFromMME(const GPU::MethodCall& method_call) {
}
void Maxwell3D::FlushMMEInlineDraw() {
- LOG_DEBUG(HW_GPU, "called, topology={}, count={}", static_cast<u32>(regs.draw.topology.Value()),
+ LOG_TRACE(HW_GPU, "called, topology={}, count={}", static_cast<u32>(regs.draw.topology.Value()),
regs.vertex_buffer.count);
ASSERT_MSG(!(regs.index_array.count && regs.vertex_buffer.count), "Both indexed and direct?");
ASSERT(mme_draw.instance_count == mme_draw.gl_end_count);