diff options
author | Richard Linden <none@none> | 2013-06-19 08:23:53 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-06-19 08:23:53 -0700 |
commit | c5fc8f90060aa7a6c8fbb72313172423b01eddc5 (patch) | |
tree | 83049bc74000fdc73c96a2d63e163d0d3cadd4d5 /indra/llcommon/llfasttimer.h | |
parent | 8977f43230bda6d7f814e770ba574d016a3875fa (diff) |
SH-4246 FIX interesting: fast timers significantly decreases framerate
moved collapsed flag to fast timer tree node
Diffstat (limited to 'indra/llcommon/llfasttimer.h')
-rwxr-xr-x | indra/llcommon/llfasttimer.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/llcommon/llfasttimer.h b/indra/llcommon/llfasttimer.h index e800befd9f..642c99ccce 100755 --- a/indra/llcommon/llfasttimer.h +++ b/indra/llcommon/llfasttimer.h @@ -86,7 +86,7 @@ class TimeBlock public LLInstanceTracker<TimeBlock> { public: - TimeBlock(const char* name, bool open = false, TimeBlock* parent = &getRootTimeBlock()); + TimeBlock(const char* name, TimeBlock* parent = &getRootTimeBlock()); TimeBlockTreeNode& getTreeNode() const; TimeBlock* getParent() const { return getTreeNode().getParent(); } @@ -98,9 +98,6 @@ public: child_iter endChildren(); std::vector<TimeBlock*>& getChildren(); - void setCollapsed(bool collapsed) { mCollapsed = collapsed; } - bool getCollapsed() const { return mCollapsed; } - TraceType<TimeBlockAccumulator::CallCountFacet>& callCount() { return static_cast<TraceType<TimeBlockAccumulator::CallCountFacet>&>(*(TraceType<TimeBlockAccumulator>*)this); |