Ignore:
Timestamp:
08/22/07 08:01:21 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreOcclusionCullingSceneManager.cpp

    r2543 r2544  
    16861686        const bool finalizeViewCells = false; 
    16871687 
     1688 
    16881689        ///////////// 
    16891690        //-- load the view cells assigning the found objects to the pvss 
     
    17411742        {                
    17421743                GtpVisibilityPreprocessor::Intersectable *obj = pit.Next(); 
    1743                 // no associated geometry found 
    1744                 if (!obj) continue; 
    1745                 SetObjectVisible(obj, loadObjects); 
     1744                if (obj) SetObjectVisible(obj, loadObjects); 
    17461745        } 
    17471746} 
     
    17571756        GtpVisibilityPreprocessor::ViewCell *viewCell =  
    17581757                mViewCellsManager->GetViewCell(viewPoint); 
     1758 
     1759        //std::stringstream d; d << "vp: " << viewPoint << " vc: " << viewCell; 
     1760        //LogManager::getSingleton().logMessage(d.str()); 
     1761         
    17591762 
    17601763        // view cell did not change => don't change pvs 
     
    17741777void OcclusionCullingSceneManager::CreateViewCellsGeometry() 
    17751778{ 
    1776         //LogManager::getSingleton().logMessage("creating view cells geometry"); 
    17771779        if (mViewCellsGeometryLoaded) return; 
    17781780 
     
    18351837        } 
    18361838} 
    1837  
    18381839//------------------------------------------------------------------------- 
    18391840void OcclusionCullingSceneManager::UpdateVisibility(Entity *ent) 
Note: See TracChangeset for help on using the changeset viewer.