Changeset 898
- Timestamp:
- 03/19/08 13:44:24
- Files:
-
- trunk/src/vpb/DataSet.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/vpb/DataSet.cpp
r891 r898 706 706 osg::Timer_t before_computeMax = osg::Timer::instance()->tick(); 707 707 708 _destinationGraph->computeMaximumSourceResolution();708 if (_destinationGraph.valid()) _destinationGraph->computeMaximumSourceResolution(); 709 709 710 710 osg::Timer_t after_computeMax = osg::Timer::instance()->tick(); … … 1142 1142 1143 1143 // now traverse the destination graph to build neighbours. 1144 _destinationGraph->computeNeighboursFromQuadMap();1144 if (_destinationGraph.valid()) _destinationGraph->computeNeighboursFromQuadMap(); 1145 1145 1146 1146 osg::Timer_t after_computeNeighbours = osg::Timer::instance()->tick(); … … 2796 2796 createDestination(numLevels); 2797 2797 2798 if (!_destinationGraph) 2799 { 2800 log(osg::WARN, "Error: no destination graph built, cannot proceed with build."); 2801 return 1; 2802 } 2803 2804 2798 2805 bool requiresGenerationOfTiles = getGenerateTiles(); 2799 2806
