| 22 | static inline ImVec2 operator-(ImVec2 const & lhs, ImVec2 const & rhs) { return ImVec2(lhs.x - rhs.x, lhs.y - rhs.y); } |
| 23 | static inline ImVec2 operator*(ImVec2 const & lhs, ImVec2 const & rhs) { return ImVec2(lhs.x * rhs.x, lhs.y * rhs.y); } |
| 24 | static inline ImVec2 operator/(ImVec2 const & lhs, ImVec2 const & rhs) { return ImVec2(lhs.x / rhs.x, lhs.y / rhs.y); } |
| 25 | |
| 26 | namespace ImGui |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected