diff options
| author | Dave Parks <davep@lindenlab.com> | 2022-10-14 15:52:44 -0500 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2022-10-14 15:52:44 -0500 |
| commit | a2b09df2db69ba8a2e6b587d839d509fbe5abebb (patch) | |
| tree | 5a67e7e84961ea52e13dcb5fe322e7817c485dc2 /indra/newview/llviewertexture.cpp | |
| parent | ec5009d70eb0fd729126b2321b9d7d6118741573 (diff) | |
SL-18293 Fix for broken wireframe mode.
Diffstat (limited to 'indra/newview/llviewertexture.cpp')
| -rw-r--r-- | indra/newview/llviewertexture.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 6cf9665e3e..590f24d359 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1913,8 +1913,7 @@ bool LLViewerFetchedTexture::updateFetch() static LLCachedControl<bool> textures_decode_disabled(gSavedSettings,"TextureDecodeDisabled", false); static LLCachedControl<F32> sCameraMotionThreshold(gSavedSettings,"TextureCameraMotionThreshold", 0.2); static LLCachedControl<S32> sCameraMotionBoost(gSavedSettings,"TextureCameraMotionBoost", 3); - if(textures_decode_disabled || - (gUseWireframe && mBoostLevel < LLGLTexture::BOOST_AVATAR_BAKED_SELF)) // don't fetch the surface textures in wireframe mode + if(textures_decode_disabled) // don't fetch the surface textures in wireframe mode { return false; } |
