Fixed the Apple SDL_opengl.h conflict in the 1.2 branch.
--HG-- branch : SDL-1.2
This commit is contained in:
parent
140a554418
commit
44262cd9eb
1 changed files with 5 additions and 0 deletions
|
@ -3108,9 +3108,14 @@ typedef char GLchar; /* native character */
|
|||
|
||||
#ifndef GL_VERSION_1_5
|
||||
/* GL types for handling large vertex buffer objects */
|
||||
#ifdef __APPLE__
|
||||
typedef long GLintptr;
|
||||
typedef long GLsizeiptr;
|
||||
#else
|
||||
typedef ptrdiff_t GLintptr;
|
||||
typedef ptrdiff_t GLsizeiptr;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef GL_ARB_vertex_buffer_object
|
||||
/* GL types for handling large vertex buffer objects */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue