diff options
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/app_settings/settings.xml | 10 | ||||
-rwxr-xr-x | indra/newview/llviewerregion.cpp | 2 | ||||
-rwxr-xr-x | indra/newview/llvocache.cpp | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 7b30bbebab..14384edc1f 100755 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -742,7 +742,7 @@ <key>Value</key> <integer>40</integer> </map> - <key>BackShpereCullingRadius</key> + <key>BackSphereCullingRadius</key> <map> <key>Comment</key> <string>Radius of back sphere in meters, objects behind camera but within this radius are loaded for rendering</string> @@ -751,7 +751,7 @@ <key>Type</key> <string>F32</string> <key>Value</key> - <real>20.0</real> + <real>100.0</real> </map> <key>BottomPanelNew</key> <map> @@ -6456,7 +6456,7 @@ <key>Type</key> <string>S32</string> <key>Value</key> - <integer>64</integer> + <integer>200</integer> </map> <key>NewObjectCreationThrottleDelayTime</key> <map> @@ -6577,7 +6577,7 @@ <key>Type</key> <string>U32</string> <key>Value</key> - <integer>64</integer> + <integer>300</integer> </map> <key>NoPreload</key> <map> @@ -7121,7 +7121,7 @@ <key>Type</key> <string>F32</string> <key>Value</key> - <real>16.0</real> + <real>100.0</real> </map> <key>ParcelMediaAutoPlayEnable</key> <map> diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index 6ba620964b..8093ce523f 100755 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -1379,7 +1379,7 @@ BOOL LLViewerRegion::isViewerCameraStatic() void LLViewerRegion::killInvisibleObjects(F32 max_time) { - static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackShpereCullingRadius"); + static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackSphereCullingRadius"); if(!sVOCacheCullingEnabled) { diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp index 2ff2d0f341..f2c048cd34 100755 --- a/indra/newview/llvocache.cpp +++ b/indra/newview/llvocache.cpp @@ -752,7 +752,7 @@ void LLVOCachePartition::selectBackObjects(LLCamera &camera, F32 back_sphere_rad S32 LLVOCachePartition::cull(LLCamera &camera, bool do_occlusion) { static LLCachedControl<bool> use_object_cache_occlusion(gSavedSettings,"UseObjectCacheOcclusion"); - static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackShpereCullingRadius"); + static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackSphereCullingRadius"); if(!LLViewerRegion::sVOCacheCullingEnabled) { |