summaryrefslogtreecommitdiff
path: root/indra/llcommon/lltrace.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-06-19 08:23:53 -0700
committerRichard Linden <none@none>2013-06-19 08:23:53 -0700
commitc5fc8f90060aa7a6c8fbb72313172423b01eddc5 (patch)
tree83049bc74000fdc73c96a2d63e163d0d3cadd4d5 /indra/llcommon/lltrace.cpp
parent8977f43230bda6d7f814e770ba574d016a3875fa (diff)
SH-4246 FIX interesting: fast timers significantly decreases framerate
moved collapsed flag to fast timer tree node
Diffstat (limited to 'indra/llcommon/lltrace.cpp')
-rw-r--r--indra/llcommon/lltrace.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/lltrace.cpp b/indra/llcommon/lltrace.cpp
index c831a1548d..59a4b42c97 100644
--- a/indra/llcommon/lltrace.cpp
+++ b/indra/llcommon/lltrace.cpp
@@ -85,7 +85,8 @@ void set_thread_recorder(ThreadRecorder* recorder)
TimeBlockTreeNode::TimeBlockTreeNode()
: mBlock(NULL),
mParent(NULL),
- mNeedsSorting(false)
+ mNeedsSorting(false),
+ mCollapsed(true)
{}
void TimeBlockTreeNode::setParent( TimeBlock* parent )