Changeset 2114 for GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE
- Timestamp:
- 02/12/07 09:05:33 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreBvHierarchySceneManager.cpp
r2067 r2114 1325 1325 GtpVisibilityPreprocessor::IndexedBoundingBoxContainer iboxes; 1326 1326 BvhBoundingBoxConverter bconverter(this); 1327 1327 GtpVisibilityPreprocessor::ObjectContainer dummys; 1328 1328 // load the view cells and assigns the objects in the pvs to 1329 1329 // the scene objects using the bounding boxes 1330 1330 mViewCellsManager = 1331 1331 GtpVisibilityPreprocessor::ViewCellsManager:: 1332 LoadViewCells(filename, &mObjects, false, &bconverter);1332 LoadViewCells(filename, mObjects, dummys, false, &bconverter); 1333 1333 1334 1334 return (mViewCellsManager != NULL); -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreKdTreeSceneManager.cpp
r2097 r2114 1325 1325 GtpVisibilityPreprocessor::IndexedBoundingBoxContainer iboxes; 1326 1326 KdTreeBoundingBoxConverter bconverter(this); 1327 1327 GtpVisibilityPreprocessor::ObjectContainer dummys; 1328 1328 // load the view cells assigning the found objects to the pvss 1329 1329 mViewCellsManager = 1330 GtpVisibilityPreprocessor::ViewCellsManager::LoadViewCells(filename, &mObjects, false, &bconverter); 1330 GtpVisibilityPreprocessor::ViewCellsManager:: 1331 LoadViewCells(filename, mObjects, dummys, false, &bconverter); 1331 1332 1332 1333 return (mViewCellsManager != NULL); -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreOcclusionCullingSceneManager.cpp
r2108 r2114 1459 1459 const bool finalizeViewCells = false; 1460 1460 1461 mViewCellsManager = GtpVisibilityPreprocessor::1462 ViewCellsManager::LoadViewCells(filename,1463 &mObjects,1464 true,1465 1461 GtpVisibilityPreprocessor::ObjectContainer dummys; 1462 // load the view cells assigning the found objects to the pvss 1463 mViewCellsManager = 1464 GtpVisibilityPreprocessor::ViewCellsManager:: 1465 LoadViewCells(filename, mObjects, dummys, false, &bconverter); 1466 1466 1467 1467 Ogre::LogManager::getSingleton().logMessage("******** view cells loaded *********");
Note: See TracChangeset
for help on using the changeset viewer.