From 22b03279a127db6bfce22680ee85d8867da5a883 Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Thu, 13 Apr 2017 18:25:31 +0300 Subject: MAINT-7313 Connect the recent per attachment reported render weight cap to a debug setting. --- indra/newview/app_settings/settings.xml | 11 +++++++++++ indra/newview/llvoavatar.cpp | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index c086e71fae..f0a91fd407 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -10179,6 +10179,17 @@ Value 10 + MaxAttachmentComplexity + + Comment + Attachment's render weight limit + Persist + 1 + Type + F32 + Value + 1.0E6 + ComplexityChangesPopUpDelay Comment diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index f6a16f7da1..571dc73013 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -119,7 +119,6 @@ const F32 MAX_HOVER_Z = 2.0; const F32 MIN_HOVER_Z = -2.0; const F32 MIN_ATTACHMENT_COMPLEXITY = 0.f; -const F32 MAX_ATTACHMENT_COMPLEXITY = 1.0e6f; using namespace LLAvatarAppearanceDefines; @@ -9018,7 +9017,8 @@ void LLVOAvatar::calculateUpdateRenderComplexity() * the official viewer for consideration. *****************************************************************/ static const U32 COMPLEXITY_BODY_PART_COST = 200; - + static LLCachedControl max_complexity(gSavedSettings,"MaxAttachmentComplexity"); + F32 MAX_ATTACHMENT_COMPLEXITY = max_complexity; // Diagnostic list of all textures on our avatar static std::set all_textures; -- cgit v1.2.3