aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorthickbrick2010-10-16 16:03:31 +0200
committerMcCabe Maxsted2010-10-16 17:33:00 -0700
commit38ce38ef4e90d309ef40cc1f61e012853453ddfb (patch)
tree9dbb9caad1ea01cad2b440fdab9f081405836c44 /linden
parentPort of SNOW-802: Use UDP for baked textures. (diff)
downloadmeta-impy-38ce38ef4e90d309ef40cc1f61e012853453ddfb.zip
meta-impy-38ce38ef4e90d309ef40cc1f61e012853453ddfb.tar.gz
meta-impy-38ce38ef4e90d309ef40cc1f61e012853453ddfb.tar.bz2
meta-impy-38ce38ef4e90d309ef40cc1f61e012853453ddfb.tar.xz
More SNOW-802: disable http for bakes earlier.
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/newview/llviewerimage.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/linden/indra/newview/llviewerimage.cpp b/linden/indra/newview/llviewerimage.cpp
index 4f23a05..671a359 100644
--- a/linden/indra/newview/llviewerimage.cpp
+++ b/linden/indra/newview/llviewerimage.cpp
@@ -256,6 +256,10 @@ LLViewerImage::LLViewerImage(const LLUUID& id, const LLHost& host, BOOL usemipma
256{ 256{
257 init(true); 257 init(true);
258 sImageCount++; 258 sImageCount++;
259 if (host != LLHost::invalid)
260 {
261 mCanUseHTTP = false; // this is a baked texture
262 }
259} 263}
260 264
261LLViewerImage::LLViewerImage(const std::string& url, const LLUUID& id, BOOL usemipmaps) 265LLViewerImage::LLViewerImage(const std::string& url, const LLUUID& id, BOOL usemipmaps)