From ca3fe5d3524e008c516f8e21600cef92fb200152 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 15 Dec 2008 16:41:34 +0000 Subject: [PATCH] Reduced the default number _targetMaximumNumberOfPageLOD to 300 to keep the memory consumption on large databases a bit lower. --- src/osgDB/DatabasePager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgDB/DatabasePager.cpp b/src/osgDB/DatabasePager.cpp index 1243d18b8..756603794 100644 --- a/src/osgDB/DatabasePager.cpp +++ b/src/osgDB/DatabasePager.cpp @@ -914,7 +914,7 @@ DatabasePager::DatabasePager() } - _targetMaximumNumberOfPageLOD = 500; + _targetMaximumNumberOfPageLOD = 300; if( (ptr = getenv("OSG_MAX_PAGEDLOD")) != 0) { _targetMaximumNumberOfPageLOD = atoi(ptr);