Let ImGUI explicitely use GLAD to load OpenGL functionalities

This commit is contained in:
hans 2021-10-29 00:50:11 +02:00
parent c718ca70fd
commit bc813ad9cd

View file

@ -107,7 +107,8 @@
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW)
#include <GL/glew.h> // Needs to be initialized with glewInit() in user's code.
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD)
#include <glad/glad.h> // 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 <glad/gl.h> // Needs to be initialized with gladLoadGL(...) or gladLoaderLoadGL() in user's code.
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2)