(Android) Issues with ABI target version 9 - just do

ugly preprocessor hacks instead
This commit is contained in:
twinaphex 2016-11-03 16:35:04 +01:00
parent 4722bb45c8
commit 85dd30ca3e

View File

@ -23,16 +23,30 @@ typedef void *GLeglImageOES;
typedef GLint GLfixed;
#endif
#if !defined(GL_ES_VERSION_2_0)
#if (__STDC_VERSION__ <= 199901L) || (OSX && !MAC_OS_X_VERSION_10_7)
#ifndef GLint64
typedef long long int GLint64;
#endif
#ifndef GLuint64
typedef unsigned long long int GLuint64;
#endif
#ifndef GLuint64EXT
typedef unsigned long long int GLuint64EXT;
#endif
typedef struct __GLsync *GLsync;
#else
#ifndef GLint64
typedef int64_t GLint64;
#endif
#ifndef GLuint64
typedef uint64_t GLuint64;
#endif
#endif
typedef void (GL_APIENTRYP RGLSYMGLBLENDBARRIERKHRPROC) (void);