Added workaround for 10.9 SDK type definitions.

This commit is contained in:
Camilla Berglund
2013-11-07 17:20:06 +01:00
parent cc7f0bd532
commit e7c7ebf665
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -4130,8 +4130,13 @@ GLAPI void APIENTRY glVertexBlendARB (GLint count);
#ifndef GL_ARB_vertex_buffer_object
#define GL_ARB_vertex_buffer_object 1
#if defined(__APPLE__)
typedef long GLsizeiptrARB;
typedef long GLintptrARB;
#else
typedef ptrdiff_t GLsizeiptrARB;
typedef ptrdiff_t GLintptrARB;
#endif
#define GL_BUFFER_SIZE_ARB 0x8764
#define GL_BUFFER_USAGE_ARB 0x8765
#define GL_ARRAY_BUFFER_ARB 0x8892