| 125 | } |
| 126 | |
| 127 | float CPostprocessAnimator::GetLength() |
| 128 | { |
| 129 | float v = 0.0f; |
| 130 | for (int a = 0; a < POSTPROCESS_PARAMS_COUNT; a++) |
| 131 | { |
| 132 | float t = m_Params[a]->get_length(); |
| 133 | v = _max(t, v); |
| 134 | } |
| 135 | return v; |
| 136 | } |
| 137 | |
| 138 | void CPostprocessAnimator::Update(float tm) |
| 139 | { |
no test coverage detected