Ignore:
Timestamp:
03/31/06 10:37:45 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/shared/EvalStats/EvalStats.cpp

    r675 r720  
    110110} 
    111111 
    112  
     112// Computes number of view cells to reach the same render cost 
    113113int ComputeNoViewCells(const StatsContainer &firstStats,  
    114114                                           const StatsContainer &currentStats) 
     
    116116        const int n = min((int)firstStats.size(), (int)currentStats.size()); 
    117117 
    118         const float renderCost = (int)currentStats[n - 1].mRenderCost; 
     118        const float renderCost = (float)currentStats[n - 1].mRenderCost; 
    119119 
    120120        int i = 0; 
Note: See TracChangeset for help on using the changeset viewer.