diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-25 10:00:55 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-25 10:00:55 +0100 |
commit | e81b787d36ee06d4a7c83fba8283c0da6acf61c6 (patch) | |
tree | 7c9fe9d7a7e0425394a3fa150662e102d08a1af5 /modules/openxr/extensions/openxr_opengl_extension.h | |
parent | c3af45791cd31e5b4b17aec7f4b938ec65c53cff (diff) | |
parent | 67f31f571e52e8bf42e0dbce711da39a1600a40b (diff) |
Merge pull request #69123 from queezle42/queezle42/master
Fix GLAD-related build problems on Linux
Diffstat (limited to 'modules/openxr/extensions/openxr_opengl_extension.h')
-rw-r--r-- | modules/openxr/extensions/openxr_opengl_extension.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/openxr/extensions/openxr_opengl_extension.h b/modules/openxr/extensions/openxr_opengl_extension.h index b666653c8e..473c5157c0 100644 --- a/modules/openxr/extensions/openxr_opengl_extension.h +++ b/modules/openxr/extensions/openxr_opengl_extension.h @@ -59,9 +59,8 @@ #include OPENGL_INCLUDE_H #define GL_GLEXT_PROTOTYPES 1 #define GL3_PROTOTYPES 1 -#include <GL/gl.h> -#include <GL/glext.h> -#include <GL/glx.h> +#include "thirdparty/glad/glad/gl.h" +#include "thirdparty/glad/glad/glx.h" #include <X11/Xlib.h> #endif |