Made the OpenGL ES implementation available on ARM-based Linux OSes

This commit is contained in:
Jonathan De Wachter 2013-12-19 16:27:42 +01:00
parent 565bc69a4e
commit 45f23cdbbb
12 changed files with 143 additions and 43 deletions

View file

@ -48,8 +48,13 @@
#elif defined(SFML_SYSTEM_LINUX) || defined(SFML_SYSTEM_FREEBSD)
#include <GL/gl.h>
#include <GL/glu.h>
#if defined(SFML_OPENGL_ES)
#include <GLES/gl.h>
#include <GLES/glext.h>
#else
#include <GL/gl.h>
#include <GL/glu.h>
#endif
#elif defined(SFML_SYSTEM_MACOS)