diff options
Diffstat (limited to 'src/render/nullopenglgraphics.h')
-rw-r--r-- | src/render/nullopenglgraphics.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/render/nullopenglgraphics.h b/src/render/nullopenglgraphics.h index fb7cdc806..9d5229674 100644 --- a/src/render/nullopenglgraphics.h +++ b/src/render/nullopenglgraphics.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; |