Changeset 1261 for GTP/trunk/Lib
- Timestamp:
- 08/23/06 00:33:57 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/OnlineCullingCHC/scripts/terrainCulling.cfg
r1255 r1261 1 1 #Scene=../../../../../resources/media/house_test1.iv 2 #Scene=../../../../../resources/media/city1500_flat_1.iv;../../../../../ media/roofs_1500.iv;../../../../../resources/media/CityRoads60.iv2 #Scene=../../../../../resources/media/city1500_flat_1.iv;../../../../../resources/media/roofs_1500.iv;../../../../../resources/media/CityRoads60.iv 3 3 Scene=terrain 4 4 … … 13 13 14 14 #VisibilityEnvironment=D:/svn/gametools/GTP/trunk/Lib/Vis/Preprocessing/scripts/generate_viewcells.env 15 VisibilityEnvironment=../../../../../../../GTP/trunk/Lib/Vis/Preprocessing/scripts/generate_viewcells.env15 #VisibilityEnvironment=../../../../../../../GTP/trunk/Lib/Vis/Preprocessing/scripts/generate_viewcells.env -
GTP/trunk/Lib/Vis/Preprocessing/src/BvHierarchy.cpp
r1259 r1261 499 499 if ((int)(leaf->mObjects.size()) > mBvhStats.maxObjectRefs) 500 500 mBvhStats.maxObjectRefs = (int)leaf->mObjects.size(); 501 502 #ifdef _DEBUG503 Debug << "BSP stats: "504 << "Depth: " << data.mDepth << " (max: " << mTermMaxDepth << "), "505 << "Prob: " << data.mProbability << " (min: " << mTermMinProbability << ")\n";506 #endif507 501 } 508 502 … … 530 524 //-- sort so we can use a sweep 531 525 SortSubdivisionCandidates(tData, axis, minBand, maxBand); 532 533 int numViewCells;534 526 535 527 float totalVol = PrepareHeuristics(tData); -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.vcproj
r1251 r1261 20 20 Name="VCCLCompilerTool" 21 21 Optimization="0" 22 AdditionalIncludeDirectories="..\include;..\src;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\..\..\..\..\NonGTP\Boost\ include"22 AdditionalIncludeDirectories="..\include;..\src;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\..\..\..\..\NonGTP\Boost\" 23 23 PreprocessorDefinitions="WIN32;_DEBUG;_LIB;" 24 24 MinimalRebuild="TRUE" -
GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor.vcproj
r1251 r1261 33 33 <Tool 34 34 Name="VCLinkerTool" 35 AdditionalDependencies="xerces-c_2D.lib zdll.lib zziplibd.lib devil.lib glut32.lib OpenGL32.Lib glu32.lib cg.lib cgGL.libPreprocessor.lib glew32.lib"35 AdditionalDependencies="xerces-c_2D.lib zdll.lib zziplibd.lib devil.lib glut32.lib OpenGL32.Lib glu32.lib Preprocessor.lib glew32.lib" 36 36 OutputFile="$(OutDir)/Preprocessor.exe" 37 37 LinkIncremental="2" 38 AdditionalLibraryDirectories="..\ include;..\src\GL;"$(CG_LIB_PATH)";"$(GTPDIR)\NonGTP\Xerces";"$(GTPDIR)\NonGTP\Xerces\xercesc\lib";"$(GTPDIR)\NonGTP\zlib\lib";"$(GTPDIR)\NonGTP\Devil\lib";..\lib\debug;"$(BOOST_LIB)""38 AdditionalLibraryDirectories="..\src\GL;..\lib\debug;..\..\..\..\..\..\NonGTP\Boost\lib;..\..\..\..\..\..\NonGTP\Xerces\xercesc\lib;..\..\..\..\..\..\NonGTP\Zlib\lib;..\..\..\..\..\..\NonGTP\Devil\lib" 39 39 GenerateDebugInformation="TRUE" 40 40 ProgramDatabaseFile="$(OutDir)/TestPreprocessor.pdb"
Note: See TracChangeset
for help on using the changeset viewer.