mirror of
https://github.com/yawut/SDL.git
synced 2026-08-24 01:35:39 -05:00
Fix another Apple conflict in SDL_opengl.h
This commit is contained in:
@@ -5105,9 +5105,14 @@ typedef char GLchar;
|
||||
|
||||
#ifndef GL_VERSION_1_5
|
||||
/* GL types for handling large vertex buffer objects */
|
||||
#if defined(__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 */
|
||||
|
||||
Reference in New Issue
Block a user