| 394 | |
| 395 | template <class T> |
| 396 | static Color4<T> |
| 397 | mul(Color4<T> &color, const Color4<T> &color2) |
| 398 | { |
| 399 | MATH_EXC_ON; |
| 400 | return color * color2; |
| 401 | } |
| 402 | |
| 403 | template <class T> |
| 404 | static Color4<T> |
nothing calls this directly
no outgoing calls
no test coverage detected