evas_cocoa: correct include for GL

This commit is contained in:
Raoul Hecky 2014-06-08 23:14:19 +02:00
parent 0635871af5
commit 2d96273c2b
1 changed files with 7 additions and 2 deletions

View File

@ -7,8 +7,13 @@
#include <EGL/egl.h>
#include <EGL/eglext.h>
#else
# include <GL/glext.h>
# include <GL/glx.h>
# ifdef BUILD_ENGINE_GL_COCOA
# include <OpenGL/gl.h>
# include <OpenGL/glext.h>
# else
# include <GL/glext.h>
# include <GL/glx.h>
# endif
#endif
/////////////////////////////////////////////////////////////////////////////////////////////////////