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 @@
# include <GLES2/gl2ext.h>
# elif USE_OPENGL_ES == 1
# include <GLES/glext.h>
//# else
//# include <GL/glext.h>
# else
# if defined(WIN32)
# include <GL/glew.h>
# else
# include <GL/glext.h>
# endif
# endif
#else
# 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