diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2019-10-20 12:12:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 12:12:11 +0200 |
commit | 1572fb9bf216e2d022067c15764ecdb5f2e0ed31 (patch) | |
tree | 7db7c68016f13d944e7c9fae35412a665ff0996f /src | |
parent | Merge pull request #3001 from bunnei/fix-clang-error (diff) | |
parent | maxwell_3d: Reduce FlushMMEInlineDraw logging to Trace (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
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); |