Commit cd781fa6 authored by Laurent Aimar's avatar Laurent Aimar

Fixed opengl compilation for win32 and maybe some linux setup.

parent 0772a4cf
...@@ -40,8 +40,12 @@ ...@@ -40,8 +40,12 @@
# include <GLES2/gl2ext.h> # include <GLES2/gl2ext.h>
# elif USE_OPENGL_ES == 1 # elif USE_OPENGL_ES == 1
# include <GLES/glext.h> # include <GLES/glext.h>
//# else # else
//# include <GL/glext.h> # if defined(WIN32)
# include <GL/glew.h>
# else
# include <GL/glext.h>
# endif
# endif # endif
#else #else
# if USE_OPENGL_ES == 2 # if USE_OPENGL_ES == 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment