update Dear ImGui to v1.90.1

This commit is contained in:
tildearrow 2025-08-10 03:12:45 -05:00
parent 74c4a52413
commit cda7bd41d6
25 changed files with 1297 additions and 841 deletions

View file

@ -115,8 +115,6 @@ Barycentric operator+(const Barycentric &a, const Barycentric &b)
ImVec2 operator*(const float f, const ImVec2 &v) { return ImVec2{ f * v.x, f * v.y }; }
bool operator!=(const ImVec2 &a, const ImVec2 &b) { return a.x != b.x || a.y != b.y; }
ImVec4 operator*(const float f, const ImVec4 &v) { return ImVec4{ f * v.x, f * v.y, f * v.z, f * v.w }; }