Commit 81767a93 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: we need GLew.h before GL.h with the headers we are using

This is probably not perfect, but our contribs header need that
parent bbc7f57f
...@@ -53,6 +53,9 @@ ...@@ -53,6 +53,9 @@
# elif USE_OPENGL_ES == 1 # elif USE_OPENGL_ES == 1
# include <GLES/gl.h> # include <GLES/gl.h>
# else # else
# ifdef WIN32
# include <GL/glew.h>
# endif
# include <GL/gl.h> # include <GL/gl.h>
# endif # endif
#endif #endif
......
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