Explorar o código

Mark DrawArrays as LOG_TRACE

There's no reason to clog logs with DrawArray.
David Marcec %!s(int64=6) %!d(string=hai) anos
pai
achega
01a4afee42
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/video_core/engines/maxwell_3d.cpp

+ 1 - 1
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?");