summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-04-02 17:54:30 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-04-02 17:54:30 -0400
commit56d4a9f36b89acfe2244e985a5ecb0923fb77a59 (patch)
tree48d579bff192e5dc1facd1e60018c2e1cb7370f3
parentadc4f8d02e1184b3072a4ff511594d31c3cd68e0 (diff)
SH-4057 FIX - host bake textures should start with UDP fetching now, instead of waiting to fail down
-rw-r--r--indra/newview/llviewertexture.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp
index 236b95253c..eb6c453e76 100644
--- a/indra/newview/llviewertexture.cpp
+++ b/indra/newview/llviewertexture.cpp
@@ -911,6 +911,10 @@ LLViewerFetchedTexture::LLViewerFetchedTexture(const LLUUID& id, FTType f_type,
{
init(TRUE) ;
mFTType = f_type;
+ if (mFTType == FTT_HOST_BAKE)
+ {
+ mCanUseHTTP = false;
+ }
generateGLTexture() ;
}