| 503 | |
| 504 | template <class T> |
| 505 | static bool |
| 506 | lessThan(Color4<T> &v, const Color4<T> &w) |
| 507 | { |
| 508 | bool isLessThan = (v.r <= w.r && v.g <= w.g && v.b <= w.b && v.a <= w.a) |
| 509 | && v != w; |
| 510 | |
| 511 | return isLessThan; |
| 512 | } |
| 513 | |
| 514 | template <class T> |
| 515 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected