- Timestamp:
- 10/13/06 05:14:34 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreBoundingBoxConverter.h
r1618 r1621 157 157 void PlatFormBoundingBoxConverter<T>::FindIntersectingObjects(const AxisAlignedBox &box, 158 158 EntityContainer &objects) const 159 { 159 {//return; 160 160 list<SceneNode *> sceneNodeList; 161 161 -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgrePlatformHierarchyInterface.cpp
r1595 r1621 129 129 mOcclusionQueries.push_back(new PlatformOcclusionQuery(mRenderSystem)); 130 130 131 std::stringstream d;131 /*std::stringstream d; 132 132 d << "resizing queries: " << (int)mOcclusionQueries.size() << std::endl; 133 LogManager::getSingleton().logMessage(d.str()); 133 LogManager::getSingleton().logMessage(d.str());*/ 134 134 } 135 135 -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreTypeConverter.cpp
r1616 r1621 40 40 ManualObject *OgreTypeConverter::ConvertToOgre(GtpVisibilityPreprocessor::Mesh *mesh, SceneManager *sceneMgr) 41 41 { 42 if (!mesh) 43 return NULL; 42 //if (!mesh) return NULL; 44 43 45 44 char name[100]; -
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r1616 r1621 613 613 if (success) 614 614 { 615 vm->ResetViewCells(); 616 615 //vm->ResetViewCells(); 616 //hack 617 vm->mViewCells.clear(); 618 ViewCellContainer leaves; 619 vm->mViewCellsTree->CollectLeaves(vm->mViewCellsTree->GetRoot(), leaves); 620 621 ViewCellContainer::const_iterator it, it_end = leaves.end(); 622 623 for (it = leaves.begin(); it != it_end; ++ it) 624 { 625 vm->mViewCells.push_back(*it); 626 } 617 627 vm->mViewCellsFinished = true; 618 628 vm->mMaxPvsSize = (int)objects->size();
Note: See TracChangeset
for help on using the changeset viewer.