| 126 | s_simulateSmokeSuccessReported = false; |
| 127 | } |
| 128 | |
| 129 | void CalculateMinMaxAvg::Sample(float value, float weight) |
| 130 | { |
| 131 | saturateMin(_min, value); |
| 132 | saturateMax(_max, value); |
| 133 | _sum += value * weight; |
| 134 | _weight += weight; |
| 135 | } |
| 136 | |
| 137 | void CalculateMinMaxAvg::Reset() |
no test coverage detected