diff options
Diffstat (limited to 'indra/newview/llvosky.cpp')
-rw-r--r-- | indra/newview/llvosky.cpp | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/indra/newview/llvosky.cpp b/indra/newview/llvosky.cpp index d3b1f1459f..b52b8f1587 100644 --- a/indra/newview/llvosky.cpp +++ b/indra/newview/llvosky.cpp @@ -59,8 +59,6 @@ #undef min #undef max -#pragma optimize("", off) - namespace { const S32 NUM_TILES_X = 8; @@ -644,23 +642,9 @@ bool LLVOSky::updateSky() bool light_direction_changed = (dot_lighting < LIGHT_DIRECTION_THRESHOLD); bool color_changed = (delta_color.length() >= COLOR_CHANGE_THRESHOLD); - if (light_direction_changed) - { - mForceUpdate = true; - } - - if (color_changed) - { - mForceUpdate = true; - } - - if (!mInitialized) - { - mForceUpdate = true; - } - //mForceUpdate = mForceUpdate || light_direction_changed; - //mForceUpdate = mForceUpdate || color_changed; - //mForceUpdate = mForceUpdate || !mInitialized; + mForceUpdate = mForceUpdate || light_direction_changed; + mForceUpdate = mForceUpdate || color_changed; + mForceUpdate = mForceUpdate || !mInitialized; if (mForceUpdate && mForceUpdateThrottle.hasExpired()) { |