- Timestamp:
- 08/28/06 13:58:58 (18 years ago)
- Location:
- GTP/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Vis/HillyTerrain/OGRE/TerrainFrameListener.cpp
r1275 r1290 1204 1204 // call once to load view cell loading overlay 1205 1205 mWindow->update(); 1206 LogManager::getSingleton().logMessage("here5");1207 1206 mViewCellsLoaded = mApplication->LoadViewCells(mApplication->mViewCellsFilename); 1208 1207 … … 1214 1213 } 1215 1214 1216 LogManager::getSingleton().logMessage("here82");1217 1215 mLoadingOverlay->hide(); 1218 1216 } -
GTP/trunk/Lib/Vis/Preprocessing/src/VspTree.cpp
r1289 r1290 1611 1611 BvhLeaf *oLeaf = mHierarchyManager->mBvHierarchy->GetLeaf(ray->mOriginObject); 1612 1612 1613 UpdateBv NodePvsContri(tLeaf, cf, pvsFront, pvsBack, totalPvs);1614 UpdateBv NodePvsContri(oLeaf, cf, pvsFront, pvsBack, totalPvs);1613 UpdateBvhLeafPvsContri(tLeaf, cf, pvsFront, pvsBack, totalPvs); 1614 UpdateBvhLeafPvsContri(oLeaf, cf, pvsFront, pvsBack, totalPvs); 1615 1615 1616 1616 break; … … 1786 1786 { 1787 1787 if (!leaf) return; 1788 1788 /* 1789 1789 const int renderCost = (int)leaf->mObjects.size(); 1790 1790 … … 1815 1815 if (cf <= 0) // back pvs 1816 1816 { 1817 if (!leaf->Mailed(1) && ! obj->Mailed(2))1817 if (!leaf->Mailed(1) && !leaf->Mailed(2)) 1818 1818 { 1819 1819 backPvs += renderCost; … … 1825 1825 leaf->Mail(1); 1826 1826 } 1827 } 1827 }*/ 1828 1828 } 1829 1829
Note: See TracChangeset
for help on using the changeset viewer.