summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2019-10-20 12:12:11 +0200
committerGitHub <noreply@github.com>2019-10-20 12:12:11 +0200
commit1572fb9bf216e2d022067c15764ecdb5f2e0ed31 (patch)
tree7db7c68016f13d944e7c9fae35412a665ff0996f
parentMerge pull request #3001 from bunnei/fix-clang-error (diff)
parentmaxwell_3d: Reduce FlushMMEInlineDraw logging to Trace (diff)
downloadyuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.tar
yuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.tar.gz
yuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.tar.bz2
yuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.tar.lz
yuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.tar.xz
yuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.tar.zst
yuzu-1572fb9bf216e2d022067c15764ecdb5f2e0ed31.zip
-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);