diff options
| author | 2019-09-21 16:11:54 +1000 | |
|---|---|---|
| committer | 2019-09-21 16:11:54 +1000 | |
| commit | 41836f3a17815fa9738f457d764a003c0471cbd0 (patch) | |
| tree | abad3ec1f0d4aaf77286558519f0e33f7048788c /src | |
| parent | Merge pull request #2846 from ReinUsesLisp/fixup-viewport-index (diff) | |
| parent | Mark DrawArrays as LOG_TRACE (diff) | |
| download | yuzu-41836f3a17815fa9738f457d764a003c0471cbd0.tar.gz yuzu-41836f3a17815fa9738f457d764a003c0471cbd0.tar.xz yuzu-41836f3a17815fa9738f457d764a003c0471cbd0.zip | |
Merge pull request #2880 from ogniK5377/drawarrays-trace
Mark DrawArrays as LOG_TRACE
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 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() { | |||
| 541 | } | 541 | } |
| 542 | 542 | ||
| 543 | void Maxwell3D::DrawArrays() { | 543 | void Maxwell3D::DrawArrays() { |
| 544 | LOG_DEBUG(HW_GPU, "called, topology={}, count={}", static_cast<u32>(regs.draw.topology.Value()), | 544 | LOG_TRACE(HW_GPU, "called, topology={}, count={}", static_cast<u32>(regs.draw.topology.Value()), |
| 545 | regs.vertex_buffer.count); | 545 | regs.vertex_buffer.count); |
| 546 | ASSERT_MSG(!(regs.index_array.count && regs.vertex_buffer.count), "Both indexed and direct?"); | 546 | ASSERT_MSG(!(regs.index_array.count && regs.vertex_buffer.count), "Both indexed and direct?"); |
| 547 | 547 | ||