diff options
author | Graham Linden <graham@lindenlab.com> | 2019-06-27 09:10:38 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-06-27 09:10:38 -0700 |
commit | 8ba159fed90fc221003e85c5d2d3b82ec30d81bf (patch) | |
tree | 06c9e605db034a0e44c64fece4a6f69763c95d38 /indra/llinventory/llsettingsbase.cpp | |
parent | cfdcd0fc8ce969ca7df4e88608ee6d3bc923954d (diff) |
SL-11151, SL-11504
Remove update threshold logic causing hiccups and rework sky updates.
Make deferred water do double transport again to match non-ALM rendering more closely.
Diffstat (limited to 'indra/llinventory/llsettingsbase.cpp')
-rw-r--r-- | indra/llinventory/llsettingsbase.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/indra/llinventory/llsettingsbase.cpp b/indra/llinventory/llsettingsbase.cpp index c051563714..e8fdd017e3 100644 --- a/indra/llinventory/llsettingsbase.cpp +++ b/indra/llinventory/llsettingsbase.cpp @@ -727,22 +727,14 @@ LLSettingsBase::BlendFactor LLSettingsBlenderTimeDelta::calculateBlend(const LLS bool LLSettingsBlenderTimeDelta::applyTimeDelta(const LLSettingsBase::Seconds& timedelta) { mTimeSpent += timedelta; - mTimeDeltaPassed += timedelta; if (mTimeSpent > mBlendSpan) { - mIgnoreTimeDelta = false; triggerComplete(); return false; } - if ((mTimeDeltaPassed < mTimeDeltaThreshold) && (!mIgnoreTimeDelta)) - { - return false; - } - LLSettingsBase::BlendFactor blendf = calculateBlend(mTimeSpent, mBlendSpan); - mTimeDeltaPassed = LLSettingsBase::Seconds(0.0); if (fabs(mLastBlendF - blendf) < mBlendFMinDelta) { |