Ignore:
Timestamp:
01/16/06 19:33:48 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/VspBspTree.cpp

    r543 r544  
    16061606 
    16071607 
    1608  
    1609 void VspBspTree::CheckValidy() 
     1608void VspBspTree::ValidateTree() 
    16101609{ 
    16111610        stack<BspNode *> nodeStack; 
     
    16351634                                                BspLeaf *l = viewCell->mLeaves.back(); 
    16361635                                                l->SetTreeValid(false); 
     1636                                                ++ mStat.invalidLeaves; 
    16371637                                                PropagateUpValidity(l); 
    16381638 
     
    26972697        startTime = GetTime(); 
    26982698 
    2699         int nViewCells = /*mergeStats.nodes*/ mStat.Leaves() - mStat.invalidLeaves; 
     2699        int nViewCells = mStat.Leaves() - mStat.invalidLeaves; 
    27002700 
    27012701        //-- use priority queue to merge leaf pairs 
Note: See TracChangeset for help on using the changeset viewer.