Ignore:
Timestamp:
02/12/07 09:05:33 (18 years ago)
Author:
mattausch
Message:
 
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  
    13251325        GtpVisibilityPreprocessor::IndexedBoundingBoxContainer iboxes; 
    13261326        BvhBoundingBoxConverter bconverter(this); 
    1327  
     1327GtpVisibilityPreprocessor::ObjectContainer dummys; 
    13281328        // load the view cells and assigns the objects in the pvs to  
    13291329        // the scene objects using the bounding boxes 
    13301330        mViewCellsManager =  
    13311331                GtpVisibilityPreprocessor::ViewCellsManager:: 
    1332                 LoadViewCells(filename, &mObjects, false, &bconverter); 
     1332                LoadViewCells(filename, mObjects, dummys, false, &bconverter); 
    13331333 
    13341334        return (mViewCellsManager != NULL); 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreKdTreeSceneManager.cpp

    r2097 r2114  
    13251325        GtpVisibilityPreprocessor::IndexedBoundingBoxContainer iboxes; 
    13261326        KdTreeBoundingBoxConverter bconverter(this); 
    1327  
     1327GtpVisibilityPreprocessor::ObjectContainer dummys; 
    13281328        // load the view cells assigning the found objects to the pvss 
    13291329        mViewCellsManager =  
    1330                 GtpVisibilityPreprocessor::ViewCellsManager::LoadViewCells(filename, &mObjects, false, &bconverter); 
     1330                GtpVisibilityPreprocessor::ViewCellsManager:: 
     1331                        LoadViewCells(filename, mObjects, dummys, false, &bconverter); 
    13311332 
    13321333        return (mViewCellsManager != NULL); 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreOcclusionCullingSceneManager.cpp

    r2108 r2114  
    14591459        const bool finalizeViewCells = false; 
    14601460 
    1461         mViewCellsManager = GtpVisibilityPreprocessor:: 
    1462                 ViewCellsManager::LoadViewCells(filename,  
    1463                                                                                 &mObjects,  
    1464                                                                                 true,  
    1465                                                                                 &bconverter); 
     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); 
    14661466         
    14671467        Ogre::LogManager::getSingleton().logMessage("******** view cells loaded *********"); 
Note: See TracChangeset for help on using the changeset viewer.