Commit 981cef30 authored by Ryan C. Gordon's avatar Ryan C. Gordon

Fixed another Apple typedef in SDL_opengl.h

parent 33981bc8
...@@ -5116,9 +5116,14 @@ typedef ptrdiff_t GLsizeiptr; ...@@ -5116,9 +5116,14 @@ typedef ptrdiff_t GLsizeiptr;
#ifndef GL_ARB_vertex_buffer_object #ifndef GL_ARB_vertex_buffer_object
/* GL types for handling large vertex buffer objects */ /* GL types for handling large vertex buffer objects */
#if defined(__APPLE__)
typedef long GLintptrARB;
typedef long GLsizeiptrARB;
#else
typedef ptrdiff_t GLintptrARB; typedef ptrdiff_t GLintptrARB;
typedef ptrdiff_t GLsizeiptrARB; typedef ptrdiff_t GLsizeiptrARB;
#endif #endif
#endif
#ifndef GL_ARB_shader_objects #ifndef GL_ARB_shader_objects
/* GL types for program/shader text and shader object handles */ /* GL types for program/shader text and shader object handles */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment