update Dear ImGui to v1.90.1
This commit is contained in:
parent
74c4a52413
commit
cda7bd41d6
25 changed files with 1297 additions and 841 deletions
2
extern/imgui_software_renderer/imgui_sw.cpp
vendored
2
extern/imgui_software_renderer/imgui_sw.cpp
vendored
|
|
@ -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 }; }
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue