Changeset 720 for GTP/trunk/Lib/Vis/shared/EvalStats
- Timestamp:
- 03/31/06 10:37:45 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/shared/EvalStats/EvalStats.cpp
r675 r720 110 110 } 111 111 112 112 // Computes number of view cells to reach the same render cost 113 113 int ComputeNoViewCells(const StatsContainer &firstStats, 114 114 const StatsContainer ¤tStats) … … 116 116 const int n = min((int)firstStats.size(), (int)currentStats.size()); 117 117 118 const float renderCost = ( int)currentStats[n - 1].mRenderCost;118 const float renderCost = (float)currentStats[n - 1].mRenderCost; 119 119 120 120 int i = 0;
Note: See TracChangeset
for help on using the changeset viewer.