diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-03-13 10:50:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 10:50:29 +0100 |
commit | 66877d62736980cfb1d7b2f40ebbcaee5514f8c5 (patch) | |
tree | bcc092e7aad089a45ae960c588494a31810fa63e | |
parent | b1c9a7c757becd548eb9d40ef167269128d9abac (diff) | |
parent | b5c7e6bac9b8ba611b52c694718c7405372dd585 (diff) |
Merge pull request #17482 from yleduc/fix_ios_build_es2
fix iOS build - error due to GLES2 missing include
-rw-r--r-- | platform/iphone/platform_config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/iphone/platform_config.h b/platform/iphone/platform_config.h index d205c7da83..d9fd61fb6e 100644 --- a/platform/iphone/platform_config.h +++ b/platform/iphone/platform_config.h @@ -30,6 +30,7 @@ #include <alloca.h> +#define GLES2_INCLUDE_H <ES2/gl.h> #define GLES3_INCLUDE_H <ES3/gl.h> #define PLATFORM_REFCOUNT |