diff --git a/examples/opengl3_example/main.cpp b/examples/opengl3_example/main.cpp index 16d3a716a..d773ec3d7 100644 --- a/examples/opengl3_example/main.cpp +++ b/examples/opengl3_example/main.cpp @@ -1,7 +1,7 @@ // ImGui - standalone example application for Glfw + OpenGL 3, using programmable pipeline #include -#include "imgui_impl_glfw_GL3.h" +#include "imgui_impl_glfw_gl3.h" #include #include #include diff --git a/examples/opengl_example/imgui_impl_glfw.cpp b/examples/opengl_example/imgui_impl_glfw.cpp index 6bf07d8aa..aa7de29b0 100644 --- a/examples/opengl_example/imgui_impl_glfw.cpp +++ b/examples/opengl_example/imgui_impl_glfw.cpp @@ -189,7 +189,7 @@ bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks) void ImGui_ImplGlfw_Shutdown() { - if (GLuint tex_id = (GLuint)ImGui::GetIO().Fonts->TexID) + if (GLuint tex_id = (GLuint)(intptr_t)ImGui::GetIO().Fonts->TexID) { glDeleteTextures(1, &tex_id); ImGui::GetIO().Fonts->TexID = 0;