diff options
author | Richard Linden <none@none> | 2013-05-13 11:44:42 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-05-13 11:44:42 -0700 |
commit | 35f1fcc399f07571fc6b7d7af00e7d4e1e07418d (patch) | |
tree | 45bebdb148273f421b52de50790745e887497124 /indra/newview/llscenemonitor.cpp | |
parent | 405aa5b1ba7b786da05136fc9cc1f0a664111ce8 (diff) |
SH-3931 WIP Interesting: Add graphs to visualize scene load metrics
improved precision of scene diff log output
Diffstat (limited to 'indra/newview/llscenemonitor.cpp')
-rw-r--r-- | indra/newview/llscenemonitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llscenemonitor.cpp b/indra/newview/llscenemonitor.cpp index 9546c786d1..3d8e1513dd 100644 --- a/indra/newview/llscenemonitor.cpp +++ b/indra/newview/llscenemonitor.cpp @@ -485,7 +485,7 @@ void LLSceneMonitor::fetchQueryResult() mDiffResult = count * 0.5f / (mDiff->getWidth() * mDiff->getHeight() * mDiffPixelRatio * mDiffPixelRatio); //0.5 -> (front face + back face) - LL_DEBUGS("SceneMonitor") << "Frame difference: " << mDiffResult << LL_ENDL; + LL_DEBUGS("SceneMonitor") << "Frame difference: " << std::setprecision(4) << mDiffResult << LL_ENDL; sample(sFramePixelDiff, mDiffResult); const F32 diff_threshold = 0.001f; |