Browse Source
Merge pull request #2880 from ogniK5377/drawarrays-trace
Mark DrawArrays as LOG_TRACE
pull/15/merge
David
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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?"); |
|
|
|
|
|
|
|
|