diff options
author | Richard Linden <none@none> | 2013-05-20 19:27:50 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-05-20 19:27:50 -0700 |
commit | ab5106535758393e02b075d1e404e4e1fcf81abf (patch) | |
tree | 04d24cb4bfbc57f75604e44dec23242e4df8a537 /indra/llcommon/lltracethreadrecorder.h | |
parent | fbce0030494ccb6fa8f6cf45e1ec95a2fa922bcd (diff) |
SH-3931 WIP Interesting: Add graphs to visualize scene load metrics
removed extra dereference for copy on write pointer
moved copyonwrite mechanism to RecordingBuffers from individual buffer
fixed logic that was leaving scene unfrozen when camera moved during metrics gathering
Diffstat (limited to 'indra/llcommon/lltracethreadrecorder.h')
-rw-r--r-- | indra/llcommon/lltracethreadrecorder.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llcommon/lltracethreadrecorder.h b/indra/llcommon/lltracethreadrecorder.h index 3e24303d92..c44bcbd12d 100644 --- a/indra/llcommon/lltracethreadrecorder.h +++ b/indra/llcommon/lltracethreadrecorder.h @@ -106,7 +106,7 @@ namespace LLTrace MasterThreadRecorder* mMaster; - class SharedData + class SharedData : public Recording { public: void appendFrom(const Recording& source); @@ -116,7 +116,6 @@ namespace LLTrace void reset(); private: LLMutex mRecordingMutex; - Recording mRecording; }; SharedData mSharedData; }; |