Ignore:
Timestamp:
01/10/07 21:32:50 (18 years ago)
Author:
bittner
Message:

samplign preprocessor updates, merge

File:
1 edited

Legend:

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

    r1952 r1966  
    697697        int histoMaxVal; 
    698698        Environment::GetSingleton()->GetIntValue("Preprocessor.histogram.maxValue", histoMaxVal); 
    699         maxRenderCost = max((float)histoMaxVal, maxRenderCost); 
     699        maxRenderCost = min((float)histoMaxVal, maxRenderCost); 
    700700 
    701701         
     
    20392039                  PvsFilterStatistics fstat = ApplyFilter2(viewcell, 
    20402040                                                                                                   false, 
    2041                                                                                                    4.0f, 
     2041                                                                                                   1.0f, 
    20422042                                                                                                   filteredPvs); 
    20432043                   
     
    23052305        {        
    23062306          // copy viewcells memory efficiently 
     2307#if VSS_STORE_VIEWCELLS 
    23072308          ray.mViewCells.reserve(viewCells.size()); 
    23082309          ray.mViewCells = viewCells; 
     2310#else 
     2311          cerr<<"Vss store viewcells not supported."<<endl; 
     2312          exit(1); 
     2313#endif 
    23092314        } 
    23102315 
     
    29662971#else 
    29672972          radius = 0.5f*globalRadius + 0.5f*localRadius; 
    2968           stats.mLocalFilterCount++; 
    2969           stats.mGlobalFilterCount++; 
     2973 
     2974          if (localRadius > globalRadius)  
     2975                stats.mLocalFilterCount++; 
     2976          else 
     2977                stats.mGlobalFilterCount++; 
    29702978#endif 
    29712979           
Note: See TracChangeset for help on using the changeset viewer.