mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
khronos_int64_t/khronos_uint64_t are just int64_t/uint64_t, change
this up - this was preventing iOS 10 build from being compilable
This commit is contained in:
parent
125bf24aed
commit
6a0ed60121
@ -3,8 +3,6 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
typedef khronos_int64_t GLint64;
|
|
||||||
typedef khronos_uint64_t GLuint64;
|
|
||||||
#ifdef GL_APIENTRY
|
#ifdef GL_APIENTRY
|
||||||
typedef void (GL_APIENTRY *RGLGENGLDEBUGPROC)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar*, GLvoid*);
|
typedef void (GL_APIENTRY *RGLGENGLDEBUGPROC)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar*, GLvoid*);
|
||||||
typedef void (GL_APIENTRY *RGLGENGLDEBUGPROCKHR)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar*, GLvoid*);
|
typedef void (GL_APIENTRY *RGLGENGLDEBUGPROCKHR)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar*, GLvoid*);
|
||||||
@ -24,11 +22,15 @@ typedef void *GLeglImageOES;
|
|||||||
#if !defined(GL_OES_fixed_point) && !defined(HAVE_OPENGLES2)
|
#if !defined(GL_OES_fixed_point) && !defined(HAVE_OPENGLES2)
|
||||||
typedef GLint GLfixed;
|
typedef GLint GLfixed;
|
||||||
#endif
|
#endif
|
||||||
#if defined(OSX) && !defined(MAC_OS_X_VERSION_10_7)
|
|
||||||
|
#if defined(__STDC_VERSION__ <= 199409L) || defined(OSX) && !defined(MAC_OS_X_VERSION_10_7)
|
||||||
typedef long long int GLint64;
|
typedef long long int GLint64;
|
||||||
typedef unsigned long long int GLuint64;
|
typedef unsigned long long int GLuint64;
|
||||||
typedef unsigned long long int GLuint64EXT;
|
typedef unsigned long long int GLuint64EXT;
|
||||||
typedef struct __GLsync *GLsync;
|
typedef struct __GLsync *GLsync;
|
||||||
|
#else
|
||||||
|
typedef int64_t GLint64;
|
||||||
|
typedef uint64_t GLuint64;
|
||||||
#endif
|
#endif
|
||||||
typedef void (GL_APIENTRYP RGLSYMGLBLENDBARRIERKHRPROC) (void);
|
typedef void (GL_APIENTRYP RGLSYMGLBLENDBARRIERKHRPROC) (void);
|
||||||
typedef void (GL_APIENTRYP RGLSYMGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
|
typedef void (GL_APIENTRYP RGLSYMGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user