Fixed another Apple typedef in SDL_opengl.h.
--HG-- branch : SDL-1.2 extra : rebase_source : f97ca41fd46383684a26045b2e846b19e58bc4d5
This commit is contained in:
parent
1a03229427
commit
a5f570809b
1 changed files with 5 additions and 0 deletions
|
@ -3119,9 +3119,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 */
|
||||||
|
#ifdef __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 handling shader object handles and program/shader text */
|
/* GL types for handling shader object handles and program/shader text */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue