diff options
author | Graham Linden <graham@lindenlab.com> | 2018-07-03 15:54:15 +0100 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2018-07-03 15:54:15 +0100 |
commit | ce2d23d33bebf8c5211ad2c9afa4c62a50498a1a (patch) | |
tree | aa5a8dbc3909b104d7cdcef6f31dc3c4355f6f65 /indra | |
parent | 7851e49878ce956726a798b3618cd283576cbe2f (diff) |
Roll back optimization that isn't needed for sky rendering when atmospherics are used, but is needed for cubemap update.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvosky.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvosky.cpp b/indra/newview/llvosky.cpp index 00d5dfcc57..c131cb886f 100644 --- a/indra/newview/llvosky.cpp +++ b/indra/newview/llvosky.cpp @@ -1072,7 +1072,7 @@ BOOL LLVOSky::updateSky() LLHeavenBody::setInterpVal( mInterpVal ); calcAtmospherics(); - if (!gPipeline.canUseWindLightShaders() && (mForceUpdate || total_no_tiles == frame)) + if (mForceUpdate || total_no_tiles == frame) { LLSkyTex::stepCurrent(); |