diff --git a/indra/newview/llperfstats.cpp b/indra/newview/llperfstats.cpp index 3bf88bb2a694933db781659729faae459129dcfc..f3d433a62276dff0bbc4107450ad0db02d59d393 100644 --- a/indra/newview/llperfstats.cpp +++ b/indra/newview/llperfstats.cpp @@ -446,7 +446,7 @@ namespace LLPerfStats // turn off if we are not locked. tunables.updateUserAutoTuneEnabled(false); } - if( LLPerfStats::tunedAvatars > 0 ) + if(renderAvatarMaxART_ns != 0 && LLPerfStats::tunedAvatars > 0 ) { // if we have more time to spare let's shift up little in the hope we'll restore an avatar. renderAvatarMaxART_ns += LLPerfStats::ART_MIN_ADJUST_UP_NANOS; diff --git a/indra/newview/llperfstats.h b/indra/newview/llperfstats.h index ac44afe5db3b28e6d56c2e0194be0876ab76180a..7aa3e1491ccda1106a82deb66eaed984796c5f06 100644 --- a/indra/newview/llperfstats.h +++ b/indra/newview/llperfstats.h @@ -45,7 +45,7 @@ namespace LLPerfStats // Note if changing these, they should correspond with the log range of the correpsonding sliders static constexpr U64 ART_UNLIMITED_NANOS{50000000}; static constexpr U64 ART_MINIMUM_NANOS{100000}; - static constexpr U64 ART_MIN_ADJUST_UP_NANOS{10000}; + static constexpr U64 ART_MIN_ADJUST_UP_NANOS{20000}; static constexpr U64 ART_MIN_ADJUST_DOWN_NANOS{10000}; static constexpr F32 PREFERRED_DD{180}; diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 9c74323f99f90c1772add878f3374536ae97bbed..dbfd47d2fa7dea46c466f41aef8f99dcdf73514d 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -816,6 +816,12 @@ LLVOAvatar::~LLVOAvatar() debugAvatarRezTime("AvatarRezLeftNotification","left sometime after declouding"); } + if(mTuned) + { + LLPerfStats::tunedAvatars--; + mTuned = false; + } + logPendingPhases(); LL_DEBUGS("Avatar") << "LLVOAvatar Destructor (0x" << this << ") id:" << mID << LL_ENDL; @@ -8382,9 +8388,15 @@ void LLVOAvatar::updateTooSlow() mTooSlow = false; mTooSlowWithoutShadows = false; } - if(mTooSlow) + if(mTooSlow && !mTuned) { LLPerfStats::tunedAvatars++; // increment the number of avatars that have been tweaked. + mTuned = true; + } + else if(!mTooSlow && mTuned) + { + LLPerfStats::tunedAvatars--; + mTuned = false; } } diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index bdc3d98e217c566772b4395610d072f763d11c98..e07ead9d46d4af0263d00de5b8ebcf1a8728dac1 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -410,6 +410,8 @@ class LLVOAvatar : bool mTooSlow{false}; bool mTooSlowWithoutShadows{false}; + bool mTuned{false}; + private: LLViewerStats::PhaseMap mPhases;