diff options
Diffstat (limited to 'src/render/modernopenglgraphics.h')
-rw-r--r-- | src/render/modernopenglgraphics.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/render/modernopenglgraphics.h b/src/render/modernopenglgraphics.h index 0c7d0d5c9..2776cc1fb 100644 --- a/src/render/modernopenglgraphics.h +++ b/src/render/modernopenglgraphics.h @@ -39,9 +39,11 @@ #define GL_GLEXT_PROTOTYPES 1 #endif #include <SDL_opengl.h> -#ifndef __native_client__ +#if defined(__APPLE__) +#include <OpenGL/glext.h> +#elif !defined(__native_client__) #include <GL/glext.h> -#endif +#endif // defined(__APPLE__) #endif class OpenGLGraphicsVertexes; |