| 192 | typedef typename functor_t::Type Type; |
| 193 | |
| 194 | static inline T avg(Type x, Type y) |
| 195 | { |
| 196 | return (x + y) / T(2); |
| 197 | } |
| 198 | |
| 199 | static inline T clamp(const Type l, const Type v, const Type u) |
| 200 | { |
nothing calls this directly
no outgoing calls
no test coverage detected