diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2019-09-21 07:43:58 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2019-09-21 07:43:58 +0200 |
commit | 01a4afee42abd93efa6cc4affe54036ff50e7bbc (patch) | |
tree | abad3ec1f0d4aaf77286558519f0e33f7048788c /src | |
parent | Merge pull request #2846 from ReinUsesLisp/fixup-viewport-index (diff) | |
download | yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.tar yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.tar.gz yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.tar.bz2 yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.tar.lz yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.tar.xz yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.tar.zst yuzu-01a4afee42abd93efa6cc4affe54036ff50e7bbc.zip |
Diffstat (limited to '')
-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 c7a3c85a0..fb3d1112c 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -541,7 +541,7 @@ void Maxwell3D::ProcessSyncPoint() { } void Maxwell3D::DrawArrays() { - 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?"); |