Ignore:
Timestamp:
01/25/06 01:44:46 (18 years ago)
Author:
mattausch
Message:

finished function for view cell construction
removed bsp rays from vspbspmanager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/RenderSimulator.h

    r564 r574  
    1919        float avgRtWithoutOverhead; 
    2020   
     21        //-- options counting only valid view cells 
     22 
     23        /// view cell with the biggest "cost" 
     24        float validMaxCost; 
     25        /// view cell with the minimal "cost" 
     26    float validMinCost; 
     27        /// average render time 
     28        float validAvgRenderTime; 
     29        /// average render time with the overhead when crossing view cells 
     30        float validAvgRtWithoutOverhead; 
     31 
    2132        void Reset()  
    2233        { 
     
    2536                avgRenderTime = 0; 
    2637                avgRtWithoutOverhead = 0; 
     38 
     39                validMaxCost = 0; 
     40                validMinCost = 999999; 
     41                validAvgRenderTime = 0; 
     42                validAvgRtWithoutOverhead = 0; 
    2743        } 
    2844 
     
    99115        /// Simulation statistics 
    100116        SimulationStatistics mSimulationStatistics; 
    101  
    102         /// if only valid view space should be rendered 
    103         bool mOnlyValid; 
    104117}; 
    105118 
Note: See TracChangeset for help on using the changeset viewer.