| 75 | friend vec4<T> operator *(const vec4<T>& lhs, T value) { return vec4<T>(lhs.x*value, lhs.y*value, lhs.z*value, lhs.w*value); } |
| 76 | friend vec4<T> operator *(T value, const vec4<T>& rhs) { return vec4<T>(rhs.x*value, rhs.y*value, rhs.z*value, rhs.w*value); } |
| 77 | friend vec4<T> operator /(const vec4<T>& lhs, T value) { return vec4<T>(lhs.x/value, lhs.y/value, lhs.z/value, lhs.w/value); } |
| 78 | |
| 79 | friend bool operator <(const vec4<T>& lhs, const vec4<T>& rhs) |
| 80 | { |
nothing calls this directly
no outgoing calls
no test coverage detected