diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pugl/gl.h | 8 | ||||
-rw-r--r-- | include/pugl/vulkan.h | 4 |
2 files changed, 7 insertions, 5 deletions
diff --git a/include/pugl/gl.h b/include/pugl/gl.h index a311416..3443d83 100644 --- a/include/pugl/gl.h +++ b/include/pugl/gl.h @@ -26,23 +26,23 @@ #ifndef PUGL_NO_INCLUDE_GL_H # ifdef __APPLE__ -# include "OpenGL/gl.h" +# include <OpenGL/gl.h> # else # ifdef _WIN32 # include <windows.h> # endif -# include "GL/gl.h" +# include <GL/gl.h> # endif #endif #ifndef PUGL_NO_INCLUDE_GLU_H # ifdef __APPLE__ -# include "OpenGL/glu.h" +# include <OpenGL/glu.h> # else # ifdef _WIN32 # include <windows.h> # endif -# include "GL/glu.h" +# include <GL/glu.h> # endif #endif diff --git a/include/pugl/vulkan.h b/include/pugl/vulkan.h index 15f834c..6a0b046 100644 --- a/include/pugl/vulkan.h +++ b/include/pugl/vulkan.h @@ -25,7 +25,9 @@ #include "pugl/pugl.h" -#include <vulkan/vulkan.h> +#include <vulkan/vulkan_core.h> + +#include <stdint.h> PUGL_BEGIN_DECLS |