Skip to content
Snippets Groups Projects
Commit 06019288 authored by Steve Bennetts's avatar Steve Bennetts
Browse files

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
parent eb4238e7
No related branches found
No related tags found
No related merge requests found
...@@ -656,9 +656,9 @@ void update_statistics(U32 frame_count) ...@@ -656,9 +656,9 @@ void update_statistics(U32 frame_count)
gObjectBits = 0; gObjectBits = 0;
// gDecodedBits = 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; static LLFrameTimer texture_stats_timer;
if (texture_stats_timer.getElapsedTimeF32() >= texture_stats_freq) if (texture_stats_timer.getElapsedTimeF32() >= texture_stats_freq)
{ {
......
...@@ -98,12 +98,12 @@ ...@@ -98,12 +98,12 @@
decimal_digits="0" decimal_digits="0"
follows="left|top" follows="left|top"
height="15" height="15"
increment="10" increment="100"
initial_value="50" initial_value="500"
layout="topleft" layout="topleft"
left_delta="150" left_delta="150"
max_val="1500" max_val="10000"
min_val="50" min_val="100"
name="max_bandwidth" name="max_bandwidth"
top_delta="0" top_delta="0"
width="180" /> width="180" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment