diff options
author | Richard Linden <none@none> | 2012-10-01 19:39:04 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-01 19:39:04 -0700 |
commit | 14b1b0b2bb6bac5bc688cc4d14c33f1b680dd3b4 (patch) | |
tree | 74942f4fef955b5a55031650146e745bbc4ccd6f /indra/llui/llstatgraph.h | |
parent | b1baf982b1bd41a150233d0a28d3601226924c65 (diff) |
SH-3275 WIP Run viewer metrics for object update messages
cleaned up API
samplers are now value types with copy-on-write buffers under the hood
removed coupling with LLThread
Diffstat (limited to 'indra/llui/llstatgraph.h')
-rw-r--r-- | indra/llui/llstatgraph.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/llui/llstatgraph.h b/indra/llui/llstatgraph.h index e7de945694..69fc36ea52 100644 --- a/indra/llui/llstatgraph.h +++ b/indra/llui/llstatgraph.h @@ -60,8 +60,7 @@ public: struct StatParams : public LLInitParam::ChoiceBlock<StatParams> { Alternative<LLStat*> legacy_stat; - Alternative<LLTrace::Stat<F32>* > f32_stat; - Alternative<LLTrace::Stat<S32>* > s32_stat; + Alternative<LLTrace::Rate<F32>* > rate_stat; }; struct Params : public LLInitParam::Block<Params, LLView::Params> @@ -107,8 +106,8 @@ public: private: LLStat* mStatp; - LLTrace::Stat<F32>* mF32Statp; - LLTrace::Stat<S32>* mS32Statp; + LLTrace::Rate<F32>* mF32Statp; + LLTrace::Rate<S32>* mS32Statp; BOOL mPerSec; |