mirror of
https://github.com/glfw/glfw.git
synced 2025-06-14 19:52:14 +00:00
Fixed GLhandleARB typedef on OS X.
This commit is contained in:
parent
0463e196b4
commit
10eb44c07d
4
deps/GL/glext.h
vendored
4
deps/GL/glext.h
vendored
@ -6162,8 +6162,12 @@ typedef ptrdiff_t GLsizeiptrARB;
|
||||
#ifndef GL_ARB_shader_objects
|
||||
/* GL types for program/shader text and shader object handles */
|
||||
typedef char GLcharARB;
|
||||
#if defined(__APPLE__)
|
||||
typedef void *GLhandleARB;
|
||||
#else
|
||||
typedef unsigned int GLhandleARB;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* GL type for "half" precision (s10e5) float data in host memory */
|
||||
#ifndef GL_ARB_half_float_pixel
|
||||
|
Loading…
Reference in New Issue
Block a user