mirror of
https://github.com/yawut/SDL.git
synced 2026-07-18 17:01:19 -05:00
Fixed another Apple typedef in SDL_opengl.h
This commit is contained in:
parent
95221a071a
commit
e0fe768768
|
|
@ -5116,9 +5116,14 @@ typedef ptrdiff_t GLsizeiptr;
|
|||
|
||||
#ifndef GL_ARB_vertex_buffer_object
|
||||
/* 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 GLsizeiptrARB;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef GL_ARB_shader_objects
|
||||
/* GL types for program/shader text and shader object handles */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user