Changeset 2120


Ignore:
Timestamp:
02/15/07 15:03:28 (17 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ObjectPvs.h

    r2117 r2120  
    2323                but the individual contributions of the entries are summed up. 
    2424        */ 
    25         float EvalPvsCost() const; 
     25        float EvalPvsCost() const {      
     26                //temp matt  
     27                return 1.0f; } 
    2628 
    2729        friend ostream &operator<<(ostream &s, const ObjectPvs &p)  
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.vcproj

    r2117 r2120  
    7272                                OptimizeForWindowsApplication="TRUE" 
    7373                                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" 
    7575                                ExceptionHandling="TRUE" 
    7676                                RuntimeLibrary="2" 
     
    383383                        </File> 
    384384                        <File 
    385                                 RelativePath=".\BitVectorPvs.cpp"> 
    386                         </File> 
    387                         <File 
    388385                                RelativePath=".\BitVectorPvs.h"> 
    389386                        </File> 
     
    585582                        <File 
    586583                                RelativePath="..\src\MutualVisibility.h"> 
    587                         </File> 
    588                         <File 
    589                                 RelativePath=".\ObjectPvs.cpp"> 
    590584                        </File> 
    591585                        <File 
  • GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor.vcproj

    r2117 r2120  
    2121                                Optimization="0" 
    2222                                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" 
    2424                                MinimalRebuild="TRUE" 
    2525                                BasicRuntimeChecks="3" 
     
    8181                                OptimizeForWindowsApplication="TRUE" 
    8282                                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" 
    8484                                RuntimeLibrary="2" 
    8585                                EnableEnhancedInstructionSet="2" 
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r2119 r2120  
    12781278 
    12791279        ViewCellContainer viewCells; 
    1280  
     1280#ifdef USE_BIT_PVS 
    12811281        cout << "objects size: " << ObjectPvsIterator::sObjects.size() << endl; 
    12821282        cout << "pvs size: " <<  ObjectPvs::sPvsSize << endl; 
    1283  
     1283#endif 
    12841284        // $$ JB hack - the collect best viewcells does not work? 
    12851285#if 0 
Note: See TracChangeset for help on using the changeset viewer.