Ignore:
Timestamp:
02/19/07 02:51:22 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2093 r2124  
    335335        Debug << "use surface area heuristics: " << mUseSah << endl; 
    336336        Debug << "subdivision stats log: " << subdivisionStatsLog << endl; 
    337         Debug << "split borders: " << mSplitBorder << endl; 
     337        //Debug << "split borders: " << mSplitBorder << endl; 
    338338        Debug << "render cost decrease weight: " << mRenderCostDecreaseWeight << endl; 
    339339        Debug << "use global sort: " << mUseGlobalSorting << endl; 
     
    14391439        if (sortEntries) 
    14401440        {       // no presorted candidate list 
    1441                 //stable_sort((*subdivisionCandidates)->begin(), (*subdivisionCandidates)->end()); 
    1442                 sort((*subdivisionCandidates)->begin(), (*subdivisionCandidates)->end()); 
     1441                stable_sort((*subdivisionCandidates)->begin(), (*subdivisionCandidates)->end()); 
     1442                //sort((*subdivisionCandidates)->begin(), (*subdivisionCandidates)->end()); 
    14431443        } 
    14441444} 
Note: See TracChangeset for help on using the changeset viewer.