From bc813ad9cdde37b3f97997c4c8f3e58ae69e79bf Mon Sep 17 00:00:00 2001 From: hans Date: Fri, 29 Oct 2021 00:50:11 +0200 Subject: [PATCH] Let ImGUI explicitely use GLAD to load OpenGL functionalities --- vendor/imgui/src/imgui_impl_opengl3.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vendor/imgui/src/imgui_impl_opengl3.cpp b/vendor/imgui/src/imgui_impl_opengl3.cpp index 643affe..d186e2e 100644 --- a/vendor/imgui/src/imgui_impl_opengl3.cpp +++ b/vendor/imgui/src/imgui_impl_opengl3.cpp @@ -107,7 +107,8 @@ #elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW) #include // Needs to be initialized with glewInit() in user's code. #elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD) -#include // Needs to be initialized with gladLoadGL() in user's code. +// this kind of smells but it works ig +#include "../glad/glad.h" // Needs to be initialized with gladLoadGL() in user's code. #elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2) #include // Needs to be initialized with gladLoadGL(...) or gladLoaderLoadGL() in user's code. #elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2)