diff options
| author | Nyx Linden <nyx@lindenlab.com> | 2012-05-29 23:01:19 +0000 | 
|---|---|---|
| committer | Nyx Linden <nyx@lindenlab.com> | 2012-05-29 23:01:19 +0000 | 
| commit | a9ef160f4eca2c6a55e2df286c9c75a27e38a831 (patch) | |
| tree | 3b99024da2c739903c5d70aef4e456d2833fa0ca /indra | |
| parent | 3a63d88e7b48397cbfd508c05632453653e678e3 (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')
| -rwxr-xr-x | indra/newview/lltexturefetch.cpp | 3 | 
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"); | 
