diff options
author | Vir Linden <vir@lindenlab.com> | 2021-11-10 17:32:09 +0000 |
---|---|---|
committer | Vir Linden <vir@lindenlab.com> | 2021-11-10 17:32:09 +0000 |
commit | fd206839101d34737687a35ef491dc1f1ce6a787 (patch) | |
tree | 56aa1f9bea3ae94faa3e2413b0bb9beb6fc60355 /indra/llui/llstatbar.h | |
parent | d3b8f823fa48a6f7d15d569b9e554e25c97075f6 (diff) | |
parent | d0b2395b8914218d211bb97b098092b63e375cd4 (diff) |
Merged in SL-16329 (pull request #769)
SL-16329 - track frame time and jitter (as average deviation frame to frame) in stats window
Approved-by: Euclid Linden
Approved-by: Michael Pohoreski
Diffstat (limited to 'indra/llui/llstatbar.h')
-rw-r--r-- | indra/llui/llstatbar.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llui/llstatbar.h b/indra/llui/llstatbar.h index 1ff4c67fc5..6b481ca68f 100644 --- a/indra/llui/llstatbar.h +++ b/indra/llui/llstatbar.h @@ -44,9 +44,10 @@ public: bar_max, tick_spacing; - Optional<bool> show_bar, + Optional<bool> show_bar, show_history, - scale_range; + scale_range, + show_median; // default is mean Optional<S32> decimal_digits, num_frames, @@ -112,6 +113,7 @@ private: bool mDisplayBar, // Display the bar graph. mDisplayHistory, + mShowMedian, mAutoScaleMax, mAutoScaleMin; }; |