Ignore:
Timestamp:
01/21/07 22:08:23 (17 years ago)
Author:
mattausch
Message:

using large address space

File:
1 edited

Legend:

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

    r2004 r2005  
    475475          
    476476        // assign the objects in sorted order 
    477         if (!TEST_POWERPLANT && mUseGlobalSorting) 
     477        if (mUseGlobalSorting) 
    478478        { 
    479479                AssignSortedObjects(sc, frontData, backData); 
     
    22262226        // create bvh traversal data 
    22272227        BvhTraversalData oData(bvhLeaf, 0, prop, nRays); 
     2228        cout << "here4" << endl; 
    22282229         
    22292230        // create sorted object lists for the first data 
    2230         if (!TEST_POWERPLANT && mUseGlobalSorting) 
     2231        if (mUseGlobalSorting) 
    22312232        { 
    22322233                AssignInitialSortedObjectList(oData, objects); 
    22332234        } 
    22342235         
    2235  
     2236        cout << "here6" << endl; 
    22362237        /////////////////// 
    22372238        //-- add first candidate for object space partition      
     
    22942295        for (int i = 0; i < 3; ++ i) 
    22952296        { 
     2297                cout << "here2 " << endl; 
    22962298                SortableEntryContainer *sortedObjects = new SortableEntryContainer(); 
    22972299 
     
    23142316                delete sortedObjects; 
    23152317        } 
    2316  
     2318cout << "here102" << endl; 
    23172319        // last sorted list: by size 
    23182320        tData.mSortedObjects[3] = new ObjectContainer(); 
     
    23932395        BvhTraversalData oData(bvhLeaf, 0, prop, nRays); 
    23942396 
    2395         if (!TEST_POWERPLANT && mUseGlobalSorting) 
     2397        if (mUseGlobalSorting) 
    23962398                AssignInitialSortedObjectList(oData, objects); 
    23972399         
Note: See TracChangeset for help on using the changeset viewer.