diff --git a/indra/newview/app_settings/settings_firestorm.xml b/indra/newview/app_settings/settings_firestorm.xml index 61d0229fee9..26ac17f8968 100644 --- a/indra/newview/app_settings/settings_firestorm.xml +++ b/indra/newview/app_settings/settings_firestorm.xml @@ -230,6 +230,42 @@ Value 0 + + AutoTuneRenderFarClipMin + + Comment + The lowest draw distance that auto tune is allowed to use + Persist + 1 + Type + F32 + Value + 32.0 + + + AutoTuneRenderFarClipTarget + + Comment + The draw distance that auto tune will try to achieve + Persist + 1 + Type + F32 + Value + 256.0 + + + AutoTuneImpostorFarAwayDistance + + Comment + Avatars beyond this range will automatically be optimized + Persist + 1 + Type + F32 + Value + 64.0 + FSChatWindow diff --git a/indra/newview/fsfloaterperformance.cpp b/indra/newview/fsfloaterperformance.cpp index 81279fc4693..98f0b99caf7 100644 --- a/indra/newview/fsfloaterperformance.cpp +++ b/indra/newview/fsfloaterperformance.cpp @@ -162,8 +162,11 @@ bool FSFloaterPerformance::postBuild() mNearbyPanel->getChild("RenderAvatarMaxART")->setCommitCallback(boost::bind(&FSFloaterPerformance::updateMaxRenderTime, this)); LLAvatarComplexityControls::setIndirectMaxArc(); + + // This seems counter intuitive, since what if a user wants to set this lower or higher than their currently set view distance, + // and also have it persist upon viewer startup? Commenting this out for now, so if it is desired it can be easily brought back. // store the current setting as the users desired reflection detail and DD - if(!LLPerfStats::tunables.userAutoTuneEnabled) + /*if(!LLPerfStats::tunables.userAutoTuneEnabled) { if (gSavedDrawDistance) { @@ -173,7 +176,7 @@ bool FSFloaterPerformance::postBuild() { gSavedSettings.setF32("AutoTuneRenderFarClipTarget", LLPipeline::RenderFarClip); } - } + }*/ return true; } diff --git a/indra/newview/skins/default/xui/en/floater_fs_performance.xml b/indra/newview/skins/default/xui/en/floater_fs_performance.xml index 8455163c04d..1d89a93dbf5 100644 --- a/indra/newview/skins/default/xui/en/floater_fs_performance.xml +++ b/indra/newview/skins/default/xui/en/floater_fs_performance.xml @@ -297,6 +297,10 @@ label="Avatars and Scene" name="av_and_scene" value="1" /> +