Ignore:
Timestamp:
01/03/08 15:53:44 (17 years ago)
Author:
bittner
Message:

big merge: preparation for havran ray caster, check if everything works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.cpp

    r2543 r2575  
    147147                EndObjectSpaceHierarchy(); 
    148148                Debug << "object space hierarchy parsed" << endl; 
     149#ifdef PERFTIMER   
    149150                mObjectTimer.Exit(); 
     151#endif 
    150152        } 
    151153        // finished paring, create view cells manager 
     
    154156                CreateViewCellsManager(); 
    155157 
     158#ifdef PERFTIMER   
    156159                Debug << "pvs time: " << mPvsTimer.TotalTime() << endl; 
    157160                Debug << "object time: " << mObjectTimer.TotalTime() << endl; 
    158161                Debug << "box time: " << mBoxTimer.TotalTime() << endl; 
    159  
     162#endif 
    160163        } 
    161164        else if (element == "Interior") 
     
    298301        const long startTime = GetTime(); 
    299302         
     303#ifdef PERFTIMER   
    300304        mBoxTimer.Entry(); 
    301  
     305#endif 
    302306        if (mBoundingBoxConverter) 
    303307        { 
     
    320324                  << TimeDiff(startTime, GetTime()) * 1e-6 << " secs" << endl; 
    321325 
     326#ifdef PERFTIMER   
    322327        mBoxTimer.Exit(); 
     328#endif 
    323329} 
    324330 
     
    481487 
    482488                mCurrentState = PARSE_OBJECTSPACE_HIERARCHY; 
     489#ifdef PERFTIMER   
    483490                mObjectTimer.Entry(); 
     491#endif 
    484492                StartObjectSpaceHierarchy(attributes); 
    485493        } 
     
    539547        } 
    540548 
     549#ifdef PERFTIMER   
    541550        mPvsTimer.Entry(); 
    542  
     551#endif 
    543552        Intersectable::NewMail(); 
    544553 
     
    582591        } 
    583592         
     593#ifdef PERFTIMER   
    584594        mPvsTimer.Exit(); 
     595#endif 
    585596} 
    586597 
Note: See TracChangeset for help on using the changeset viewer.