summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorPalmer Truelson <palmer@lindenlab.com>2010-03-17 12:20:57 -0700
committerPalmer Truelson <palmer@lindenlab.com>2010-03-17 12:20:57 -0700
commite898ec97a2e047a99d9474a153bd6ebffe1503fc (patch)
treeb3fb2fe3327b4c5ee94c5f44aa42303cea8ceb64 /indra
parentd425ccdb971236f5f32c79adfad9feebf462f6ff (diff)
EXT-6419 : Adding texture time metric to viewer stats
Reviewed by Mani
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llviewerstats.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp
index 8059f866ba..a77aec1be9 100644
--- a/indra/newview/llviewerstats.cpp
+++ b/indra/newview/llviewerstats.cpp
@@ -827,7 +827,11 @@ void send_stats()
S32 window_height = gViewerWindow->getWindowHeightRaw();
S32 window_size = (window_width * window_height) / 1024;
misc["string_1"] = llformat("%d", window_size);
- // misc["string_2"] =
+ if (gDebugTimers.find(0) != gDebugTimers.end() && gFrameTimeSeconds > 0)
+ {
+ misc["string_2"] = llformat("Texture Time: %.2f Total Time: %.2f", gDebugTimers[0].getElapsedTimeF32(), gFrameTimeSeconds);
+ }
+
// misc["int_1"] = LLSD::Integer(gSavedSettings.getU32("RenderQualityPerformance")); // Steve: 1.21
// misc["int_2"] = LLSD::Integer(gFrameStalls); // Steve: 1.21