diff options
Merge branch 'diva-textures-osgrid' into diva-textures
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index d8bd36d..3b43771 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -3134,26 +3134,20 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3134 | } | 3134 | } |
3135 | } | 3135 | } |
3136 | 3136 | ||
3137 | // Unlike the other timers, this one is only started after | ||
3138 | // the first request is seen. | ||
3139 | |||
3140 | void HandleQueueEmpty(ThrottleOutPacketType queue) | 3137 | void HandleQueueEmpty(ThrottleOutPacketType queue) |
3141 | { | 3138 | { |
3142 | switch (queue) | 3139 | switch (queue) |
3143 | { | 3140 | { |
3144 | case ThrottleOutPacketType.Texture: | 3141 | case ThrottleOutPacketType.Texture: |
3145 | ProcessTextureRequests(); | 3142 | ProcessTextureRequests(); |
3146 | break; | 3143 | break; |
3147 | } | 3144 | } |
3148 | } | 3145 | } |
3149 | 3146 | ||
3150 | void ProcessTextureRequests() | 3147 | void ProcessTextureRequests() |
3151 | { | 3148 | { |
3152 | if (m_imageManager != null) | 3149 | if (m_imageManager != null) |
3153 | { | 3150 | m_imageManager.ProcessImageQueue(m_textureSendLimit, m_textureDataLimit); |
3154 | m_imageManager.ProcessImageQueue(m_textureSendLimit, | ||
3155 | m_textureDataLimit); | ||
3156 | } | ||
3157 | } | 3151 | } |
3158 | 3152 | ||
3159 | void ProcessPrimFullUpdates(object sender, ElapsedEventArgs e) | 3153 | void ProcessPrimFullUpdates(object sender, ElapsedEventArgs e) |