summaryrefslogtreecommitdiff
path: root/indra/newview/llfasttimerview.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-06-19 20:30:41 -0700
committerRichard Linden <none@none>2013-06-19 20:30:41 -0700
commit3fe19d883d2856cd7d104810b794eee82d642a3e (patch)
treebdc9a1ad5ee92ff6642ae7f025ded131585cc7db /indra/newview/llfasttimerview.h
parent1236c920eaa01a2e396b656b292429b51e2360cf (diff)
SH-3931 WIP Interesting: Add graphs to visualize scene load metrics
scene monitor output is cleaned up, no duplicate first frame, less scientific notation periodic recording extension now works more cleanly
Diffstat (limited to 'indra/newview/llfasttimerview.h')
-rwxr-xr-xindra/newview/llfasttimerview.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/newview/llfasttimerview.h b/indra/newview/llfasttimerview.h
index d931f25a7e..9d88bb2d3f 100755
--- a/indra/newview/llfasttimerview.h
+++ b/indra/newview/llfasttimerview.h
@@ -103,6 +103,11 @@ private:
struct TimerBarRow
{
+ TimerBarRow()
+ : mBottom(0),
+ mTop(0),
+ mBars(NULL)
+ {}
S32 mBottom,
mTop;
TimerBar* mBars;
@@ -118,9 +123,9 @@ private:
enum EDisplayType
{
- TIME,
- CALLS,
- HZ
+ DISPLAY_TIME,
+ DISPLAY_CALLS,
+ DISPLAY_HZ
} mDisplayType;
bool mPauseHistory;
LLUnit<F64, LLUnits::Seconds> mAllTimeMax,