Changeset 2120
- Timestamp:
- 02/15/07 15:03:28 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/ObjectPvs.h
r2117 r2120 23 23 but the individual contributions of the entries are summed up. 24 24 */ 25 float EvalPvsCost() const; 25 float EvalPvsCost() const { 26 //temp matt 27 return 1.0f; } 26 28 27 29 friend ostream &operator<<(ostream &s, const ObjectPvs &p) -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.vcproj
r2117 r2120 72 72 OptimizeForWindowsApplication="TRUE" 73 73 AdditionalIncludeDirectories="..\include;..\src;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\..\..\..\..\NonGTP\Boost;Timer" 74 PreprocessorDefinitions="WIN32;NDEBUG;_LIB;USE_ BIT_PVS"74 PreprocessorDefinitions="WIN32;NDEBUG;_LIB;USE_VERBOSE_PVS" 75 75 ExceptionHandling="TRUE" 76 76 RuntimeLibrary="2" … … 383 383 </File> 384 384 <File 385 RelativePath=".\BitVectorPvs.cpp">386 </File>387 <File388 385 RelativePath=".\BitVectorPvs.h"> 389 386 </File> … … 585 582 <File 586 583 RelativePath="..\src\MutualVisibility.h"> 587 </File>588 <File589 RelativePath=".\ObjectPvs.cpp">590 584 </File> 591 585 <File -
GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor.vcproj
r2117 r2120 21 21 Optimization="0" 22 22 AdditionalIncludeDirectories="..\include;..\src;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\..\..\..\..\NonGTP\Boost" 23 PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;NO_QT ;USE_BIT_PVS"23 PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;NO_QT" 24 24 MinimalRebuild="TRUE" 25 25 BasicRuntimeChecks="3" … … 81 81 OptimizeForWindowsApplication="TRUE" 82 82 AdditionalIncludeDirectories="..\include;..\..\..\..\..\..\NonGTP\Boost;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\MultiLevelRayTracing;Timer" 83 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NO_QT;USE_ BIT_PVS"83 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NO_QT;USE_VERBOSE_PVS" 84 84 RuntimeLibrary="2" 85 85 EnableEnhancedInstructionSet="2" -
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r2119 r2120 1278 1278 1279 1279 ViewCellContainer viewCells; 1280 1280 #ifdef USE_BIT_PVS 1281 1281 cout << "objects size: " << ObjectPvsIterator::sObjects.size() << endl; 1282 1282 cout << "pvs size: " << ObjectPvs::sPvsSize << endl; 1283 1283 #endif 1284 1284 // $$ JB hack - the collect best viewcells does not work? 1285 1285 #if 0
Note: See TracChangeset
for help on using the changeset viewer.