diff options
author | Richard Linden <none@none> | 2012-10-09 22:18:07 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-09 22:18:07 -0700 |
commit | 05510799e5a69eafcc919e72d25cf5b89c9274cf (patch) | |
tree | b019cdf1650c9a886134fb685cd7fee32d6a5caa /indra/llcommon/lltracerecording.h | |
parent | 8bb0a6ef737cb40c8f64f37fe64ecc7f6a87ae18 (diff) |
SH-3275 WIP Update viewer metrics system to be more flexible
renamed mergeSamples to mergeRecording
Diffstat (limited to 'indra/llcommon/lltracerecording.h')
-rw-r--r-- | indra/llcommon/lltracerecording.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h index 092dc7ff2c..4399a65cfb 100644 --- a/indra/llcommon/lltracerecording.h +++ b/indra/llcommon/lltracerecording.h @@ -194,7 +194,7 @@ namespace LLTrace void makePrimary(); bool isPrimary(); - void mergeSamples(const Recording& other); + void mergeRecording(const Recording& other); void mergeDeltas(const Recording& baseline, const Recording& target); void reset(); @@ -300,7 +300,7 @@ namespace LLTrace mTotalRecording.reset(); for (S32 i = (mCurPeriod + 1) % mNumPeriods; i < mCurPeriod; i++) { - mTotalRecording.mergeSamples(mRecordingPeriods[i]); + mTotalRecording.mergeRecording(mRecordingPeriods[i]); } } mTotalValid = true; |