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
3d9a6850
Commit
3d9a6850
authored
Aug 26, 2011
by
Ryan C. Gordon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix another Apple conflict in SDL_opengl.h
parent
0daed19a
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 @
3d9a6850
...
@@ -5105,9 +5105,14 @@ typedef char GLchar;
...
@@ -5105,9 +5105,14 @@ typedef char GLchar;
#ifndef GL_VERSION_1_5
#ifndef GL_VERSION_1_5
/* GL types for handling large vertex buffer objects */
/* GL types for handling large vertex buffer objects */
#if defined(__APPLE__)
typedef
long
GLintptr
;
typedef
long
GLsizeiptr
;
#else
typedef
ptrdiff_t
GLintptr
;
typedef
ptrdiff_t
GLintptr
;
typedef
ptrdiff_t
GLsizeiptr
;
typedef
ptrdiff_t
GLsizeiptr
;
#endif
#endif
#endif
#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 */
...
...
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