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
77f25419
Commit
77f25419
authored
Aug 04, 2011
by
Ryan C. Gordon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apple uses a void* for GLhandleARB, not an unsigned int.
parent
247346d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
SDL_opengl.h
include/SDL_opengl.h
+4
-0
No files found.
include/SDL_opengl.h
View file @
77f25419
...
@@ -5118,8 +5118,12 @@ typedef ptrdiff_t GLsizeiptrARB;
...
@@ -5118,8 +5118,12 @@ typedef ptrdiff_t GLsizeiptrARB;
#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 */
typedef
char
GLcharARB
;
typedef
char
GLcharARB
;
#if defined(__APPLE__)
typedef
void
*
GLhandleARB
;
#else
typedef
unsigned
int
GLhandleARB
;
typedef
unsigned
int
GLhandleARB
;
#endif
#endif
#endif
/* GL type for "half" precision (s10e5) float data in host memory */
/* GL type for "half" precision (s10e5) float data in host memory */
#ifndef GL_ARB_half_float_pixel
#ifndef GL_ARB_half_float_pixel
...
...
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