diff options
author | Dave Parks <davep@lindenlab.com> | 2012-03-26 15:41:27 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-03-26 15:41:27 -0500 |
commit | 654dd60ca7310db940e09065a3f6e7fec377c956 (patch) | |
tree | d401b682f18da1c5dfbea261ed5da05665d5ab81 /indra/newview/lldrawpoolbump.cpp | |
parent | b187aeb8f177bd76e792652e773617beff18b47b (diff) | |
parent | ce0f455b7cb5a5d45e7682e4a4180b577eda3c5a (diff) |
merge
Diffstat (limited to 'indra/newview/lldrawpoolbump.cpp')
-rw-r--r-- | indra/newview/lldrawpoolbump.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/lldrawpoolbump.cpp b/indra/newview/lldrawpoolbump.cpp index b58efe62ab..6f71e6ebc8 100644 --- a/indra/newview/lldrawpoolbump.cpp +++ b/indra/newview/lldrawpoolbump.cpp @@ -1341,8 +1341,7 @@ void LLBumpImageList::onSourceLoaded( BOOL success, LLViewerTexture *src_vi, LLI // immediately assign bump to a global smart pointer in case some local smart pointer // accidentally releases it. LLPointer<LLViewerTexture> bump = LLViewerTextureManager::getLocalTexture( TRUE ); - - + if (!LLPipeline::sRenderDeferred) { LLFastTimer t(FTM_BUMP_SOURCE_CREATE); @@ -1351,6 +1350,10 @@ void LLBumpImageList::onSourceLoaded( BOOL success, LLViewerTexture *src_vi, LLI } else { //convert to normal map + + //disable compression on normal maps to prevent errors below + bump->getGLTexture()->setAllowCompression(false); + { LLFastTimer t(FTM_BUMP_SOURCE_CREATE); bump->setExplicitFormat(GL_RGBA8, GL_ALPHA); |