Changeset 880

Show
Ignore:
Timestamp:
03/03/08 13:16:46
Author:
robert
Message:

Removed debug message

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/vpb/DataSet.cpp

    r879 r880  
    23402340            { 
    23412341                // just use primary split level 
    2342                 setDistributedBuildSplitLevel((maxLevel * 2) / 5); 
     2342                setDistributedBuildSplitLevel( maxLevel / 2 ); 
    23432343            } 
    23442344            else 
    23452345            { 
    2346                 setDistributedBuildSplitLevel(maxLevel / 4); 
    2347                 setDistributedBuildSecondarySplitLevel((maxLevel * 5) / 9); 
     2346                setDistributedBuildSplitLevel( maxLevel / 3 ); 
     2347                setDistributedBuildSecondarySplitLevel( (maxLevel * 2) / 3 ); 
    23482348            } 
    23492349        } 
     
    23512351        { 
    23522352            // need to compute the primary split level only 
    2353             setDistributedBuildSplitLevel(getDistributedBuildSecondarySplitLevel()/2); 
     2353            setDistributedBuildSplitLevel( getDistributedBuildSecondarySplitLevel()/2 ); 
    23542354        } 
    23552355    } 
  • trunk/src/vpb/Destination.cpp

    r879 r880  
    14471447            if (!baseLayer) 
    14481448            { 
    1449                 log(osg::NOTICE,"Recording base layer for layer %i",layerNum); 
    14501449                baseLayer = imageLayer; 
    14511450            }