Ignore:
Timestamp:
03/05/07 11:07:44 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2176 r2187  
    1212#include "SubdivisionCandidate.h" 
    1313#include "HierarchyManager.h" 
     14#include "PerfTimer.h" 
    1415 
    1516 
     
    535536                float GetPriority() const 
    536537                { 
    537                         return (float)-mParentData.mDepth; 
    538                         //return mPriority; 
     538                        return mPriority; 
    539539                } 
    540540 
     
    723723        VspNode *SubdivideAndCopy(SplitQueue &tQueue, SubdivisionCandidate *splitCandidate); 
    724724 
     725        PerfTimer mSortTimer; 
     726        PerfTimer mSplitTimer; 
     727        PerfTimer mNodeTimer; 
     728        PerfTimer mSubdivTimer; 
     729        PerfTimer mEvalTimer; 
    725730 
    726731protected: 
     
    985990                float &backPvs, 
    986991                float &totalPvsm, 
    987                 const bool countEntries = false) const; 
     992                const bool countEntries) const; 
    988993 
    989994        /** Evaluates the contribution for kd leaves. 
Note: See TracChangeset for help on using the changeset viewer.