Made the OpenGL ES implementation available on ARM-based Linux OSes
This commit is contained in:
parent
565bc69a4e
commit
45f23cdbbb
12 changed files with 143 additions and 43 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue