Let ImGUI explicitely use GLAD to load OpenGL functionalities
This commit is contained in:
parent
c718ca70fd
commit
bc813ad9cd
3
vendor/imgui/src/imgui_impl_opengl3.cpp
vendored
3
vendor/imgui/src/imgui_impl_opengl3.cpp
vendored
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue