Update ImGui to v1.85 + use default include folders. #1970
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Updates CMake code to use the repo imgui and imguizmo as the only include path. This avoids the hack of copying headers around and makes libigl code compatible with other codebase including imgui in their own projects.
Client code using ImGuiMenu.h should not need to include
imgui.h
(since it's already included byImGuiMenu.h
), but if they do, the following modifications would be required:#include <imgui/imgui.h>
-->#include <imgui.h>
#include <imgui/imgui_internal.h>
-->#include <imgui_internal.h>
#include <imgui_impl_glfw.h>
-->#include <backends/imgui_impl_glfw.h>
#include <imgui_impl_opengl3.h>
-->#include <backends/imgui_impl_opengl3.h>
The text was updated successfully, but these errors were encountered: