fixed include for emscripten/android+gles2

This commit is contained in:
Michael Tesch 2016-08-16 19:05:42 +02:00
parent 5edab498de
commit cf5e6393e4

View File

@ -33,6 +33,9 @@
#if defined(__APPLE__)
#include <OpenGLES/ES2/gl.h>
#include <OpenGLES/ES2/glext.h>
#elif defined(__ANDROID__) || defined (__EMSCRIPTEN__)
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#else
#include <GLES/gl.h>
#endif