Changeset 1846 for GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
- Timestamp:
- 12/04/06 23:41:19 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r1845 r1846 6163 6163 void VspOspViewCellsManager::CompressViewCells() 6164 6164 { 6165 ViewCellsManager::CompressViewCells();6166 return;6165 //ViewCellsManager::CompressViewCells(); 6166 //return; 6167 6167 //////////// 6168 6168 //-- compression … … 6173 6173 6174 6174 cout << "compressing in the objects" << endl; 6175 cout << "number of entries before compress: " << pvsEntries << endl; 6176 Debug << "number of entries before compress: " << pvsEntries << endl; 6175 float mem = (float)pvsEntries * ObjectPvs::GetEntrySize(); 6176 6177 cout << "number of entries before compress: " << pvsEntries << ", mem=" << mem << endl; 6178 Debug << "number of entries before compress: " << pvsEntries << ", mem=" << mem << endl; 6177 6179 6178 6180 pvsEntries = mHierarchyManager->CompressObjectSpace(); 6179 6180 Debug << "number of entries after compress: " << pvsEntries << endl; 6181 cout << "number of entries after compress: " << pvsEntries << endl; 6181 mem = (float)pvsEntries * ObjectPvs::GetEntrySize(); 6182 6183 Debug << "number of entries after compress: " << pvsEntries << ", mem=" << mem << endl; 6184 cout << "number of entries after compress: " << pvsEntries << ", mem=" << mem << endl; 6182 6185 } 6183 6186 }
Note: See TracChangeset
for help on using the changeset viewer.