Skip to content

Commit

Permalink
Debug|GL: Disabled some debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Oct 7, 2016
1 parent c9b440a commit db3ae43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doomsday/sdk/libcore/src/core/garbage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct Garbage : public Lockable
if (allocs.empty()) return;

#ifdef DENG2_DEBUG
qDebug() << "[Garbage] Recycling" << allocs.size() << "allocs/objects";
//qDebug() << "[Garbage] Recycling" << allocs.size() << "allocs/objects";
#endif

for (Allocs::iterator i = allocs.begin(); i != allocs.end(); )
Expand Down
4 changes: 2 additions & 2 deletions doomsday/sdk/libgui/src/glwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ DENG2_PIMPL(GLWindow)
average = average / recordedGpuTimes.size();
recordedGpuTimes.clear();

qDebug() << "[OpenGL average frame timed]" << average.asMicroSeconds() << "µs";
qDebug() << "[OpenGL draw count]" << GLBuffer::drawCount();
//qDebug() << "[OpenGL average frame timed]" << average.asMicroSeconds() << "µs";
//qDebug() << "[OpenGL draw count]" << GLBuffer::drawCount();

gpuTimeRecordingStartedAt.restart();
}
Expand Down

0 comments on commit db3ae43

Please sign in to comment.