Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
981cef30
Commit
981cef30
authored
Sep 02, 2011
by
Ryan C. Gordon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed another Apple typedef in SDL_opengl.h
parent
33981bc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
SDL_opengl.h
include/SDL_opengl.h
+5
-0
No files found.
include/SDL_opengl.h
View file @
981cef30
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment