diff options
| -rw-r--r-- | indra/newview/llviewertexture.cpp | 21 | 
1 files changed, 11 insertions, 10 deletions
| diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index f27e20c2a2..a889cd9637 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -390,6 +390,7 @@ void LLViewerTextureManager::cleanup()  	LLImageGL::sDefaultGLTexture = NULL ;  	LLViewerTexture::sNullImagep = NULL;  	LLViewerTexture::sBlackImagep = NULL; +	LLViewerTexture::sCheckerBoardImagep = NULL;  	LLViewerFetchedTexture::sDefaultImagep = NULL;	  	LLViewerFetchedTexture::sSmokeImagep = NULL;  	LLViewerFetchedTexture::sMissingAssetImagep = NULL; @@ -2156,16 +2157,16 @@ void LLViewerFetchedTexture::clearFetchedResults()  	destroyGLTexture();  } -void LLViewerFetchedTexture::forceToDeleteRequest()
 -{
 -	if (mHasFetcher)
 -	{
 -		LLAppViewer::getTextureFetch()->deleteRequest(getID(), true);
 -		mHasFetcher = FALSE;
 -		mIsFetching = FALSE ;
 -		resetTextureStats();
 -	}
 -}
 +void LLViewerFetchedTexture::forceToDeleteRequest() +{ +	if (mHasFetcher) +	{ +		LLAppViewer::getTextureFetch()->deleteRequest(getID(), true); +		mHasFetcher = FALSE; +		mIsFetching = FALSE ; +		resetTextureStats(); +	} +}  void LLViewerFetchedTexture::setIsMissingAsset()  { | 
