From c8067cfd9708fe30659b1f07f6d035508bea3033 Mon Sep 17 00:00:00 2001 From: Xiaohong Bao Date: Wed, 9 Oct 2013 21:42:53 -0600 Subject: Enable the debug setting "NonvisibleObjectsInMemoryTime" --- indra/newview/app_settings/settings.xml | 24 ++++++++++++------------ indra/newview/llvocache.cpp | 7 ++++++- 2 files changed, 18 insertions(+), 13 deletions(-) (limited to 'indra') diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 27342712c6..7bfca2834b 100755 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -4753,18 +4753,7 @@ Boolean Value 0 - - InvisibleObjectsInMemoryTime - - Comment - Number of frames invisible objects stay in memory before being removed. 0 means never to remove. - Persist - 1 - Type - U32 - Value - 64 - + JoystickAvatarEnabled Comment @@ -6581,6 +6570,17 @@ Value 0 + NonvisibleObjectsInMemoryTime + + Comment + Number of frames non-visible objects stay in memory before being removed. 0 means never to remove. + Persist + 1 + Type + U32 + Value + 64 + NoPreload Comment diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp index 0466dea39d..f16f3507c3 100755 --- a/indra/newview/llvocache.cpp +++ b/indra/newview/llvocache.cpp @@ -347,7 +347,7 @@ void LLVOCacheEntry::updateDebugSettings() static LLCachedControl squared_back_angle(gSavedSettings,"BackProjectionAngleSquared"); //the number of frames invisible objects stay in memory - static LLCachedControl inv_obj_time(gSavedSettings,"InvisibleObjectsInMemoryTime"); + static LLCachedControl inv_obj_time(gSavedSettings,"NonvisibleObjectsInMemoryTime"); sMinFrameRange = inv_obj_time - 1; //make 0 to be the maximum @@ -374,6 +374,11 @@ bool LLVOCacheEntry::isRecentlyVisible() const vis = (rad * rad / mSceneContrib < sBackDistanceSquared); } + if(!vis) + { + vis = (getVisible() + sMinFrameRange > LLViewerOctreeEntryData::getCurrentFrame()); + } + return vis; } -- cgit v1.2.3