summaryrefslogtreecommitdiff
path: root/indra/newview/lltexturefetch.cpp
diff options
context:
space:
mode:
authorNyx Linden <nyx@lindenlab.com>2012-05-29 23:01:19 +0000
committerNyx Linden <nyx@lindenlab.com>2012-05-29 23:01:19 +0000
commita9ef160f4eca2c6a55e2df286c9c75a27e38a831 (patch)
tree3b99024da2c739903c5d70aef4e456d2833fa0ca /indra/newview/lltexturefetch.cpp
parent3a63d88e7b48397cbfd508c05632453653e678e3 (diff)
SH-3135 Viewer UI corruption
Presumed to be a complete failure of texture pipeline to decode anything. Got a fix from bao, a flag was not initialized properly in the texture pipeline.
Diffstat (limited to 'indra/newview/lltexturefetch.cpp')
-rwxr-xr-xindra/newview/lltexturefetch.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp
index e307de329b..1e34954f79 100755
--- a/indra/newview/lltexturefetch.cpp
+++ b/indra/newview/lltexturefetch.cpp
@@ -1905,7 +1905,8 @@ LLTextureFetch::LLTextureFetch(LLTextureCache* cache, LLImageDecodeThread* image
mQAMode(qa_mode),
mFetchDebugger(NULL),
mFetchSource(LLTextureFetch::FROM_ALL),
- mOriginFetchSource(LLTextureFetch::FROM_ALL)
+ mOriginFetchSource(LLTextureFetch::FROM_ALL),
+ mFetcherLocked(FALSE)
{
mCurlPOSTRequestCount = 0;
mMaxBandwidth = gSavedSettings.getF32("ThrottleBandwidthKBPS");