Fixed another Apple typedef in SDL_opengl.h.

--HG--
branch : SDL-1.2
extra : rebase_source : f97ca41fd46383684a26045b2e846b19e58bc4d5
This commit is contained in:
Ryan C. Gordon 2011-09-02 13:55:31 -04:00
parent 1a03229427
commit a5f570809b

View file

@ -3119,9 +3119,14 @@ typedef ptrdiff_t GLsizeiptr;
#ifndef GL_ARB_vertex_buffer_object
/* GL types for handling large vertex buffer objects */
#ifdef __APPLE__
typedef long GLintptrARB;
typedef long GLsizeiptrARB;
#else
typedef ptrdiff_t GLintptrARB;
typedef ptrdiff_t GLsizeiptrARB;
#endif
#endif
#ifndef GL_ARB_shader_objects
/* GL types for handling shader object handles and program/shader text */