diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-12-18 17:14:53 -0800 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-12-18 17:14:53 -0800 |
commit | 06019288c181ad986e854969214a5c6ec3ba69b2 (patch) | |
tree | 9b8132c8e72aa84820fab082f9e10bbdd43b8eda /indra | |
parent | eb4238e717e2d155672a2b5a30822cd7619a94c0 (diff) |
HTTP Texture tuning:
* Changed download rate update frequency
* Updated network bandwidth preferences to be 100 Kbps - 10 Mbps instead of 50 Kbps - 1.5 MBps
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerstats.cpp | 4 | ||||
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_preferences_setup.xml | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp index a1a3bc6d6a..8059f866ba 100644 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -656,9 +656,9 @@ void update_statistics(U32 frame_count) gObjectBits = 0; // gDecodedBits = 0; - // Only update texture stats ones per second so that they are less noisy + // Only update texture stats periodically so that they are less noisy { - static const F32 texture_stats_freq = 1.f; + static const F32 texture_stats_freq = 10.f; static LLFrameTimer texture_stats_timer; if (texture_stats_timer.getElapsedTimeF32() >= texture_stats_freq) { diff --git a/indra/newview/skins/default/xui/en/panel_preferences_setup.xml b/indra/newview/skins/default/xui/en/panel_preferences_setup.xml index 83dc7cd854..34bd6fb091 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_setup.xml @@ -98,12 +98,12 @@ decimal_digits="0" follows="left|top" height="15" - increment="10" - initial_value="50" + increment="100" + initial_value="500" layout="topleft" left_delta="150" - max_val="1500" - min_val="50" + max_val="10000" + min_val="100" name="max_bandwidth" top_delta="0" width="180" /> |