medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 1d6644f1b2e97d0fca0c77c65028c0a069dc2aae
parent 820c72ee71d93dc7337a0369545ae57f15f95dc3
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun Jan 15 16:37:40 +0200

Use the repo GLFW headers in imgui

Diffstat:
libs/imgui/imgui_impl_glfw_gl3.cc | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/libs/imgui/imgui_impl_glfw_gl3.cc b/libs/imgui/imgui_impl_glfw_gl3.cc @@ -10,14 +10,16 @@ #include "imgui_impl_glfw_gl3.h" #include "glad.h" +#include "libs/glfw/include/GLFW/glfw3.h" // GL3W/GLFW // #include <GL/gl3w.h> // This example is using gl3w to access OpenGL functions (because it is small). You may use glew/glad/glLoadGen/etc. whatever already works for you. -#include <GLFW/glfw3.h> +// #include <GLFW/glfw3.h> #ifdef _WIN32 #undef APIENTRY #define GLFW_EXPOSE_NATIVE_WIN32 #define GLFW_EXPOSE_NATIVE_WGL -#include <GLFW/glfw3native.h> +// #include <GLFW/glfw3native.h> +#include "libs/glfw/include/GLFW/glfw3native.h" #endif // Data