diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-06-15 00:27:55 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-06-20 16:54:58 -0700 |
commit | 559e4f8ebcb186b491d7d687ac43f22a62448fc1 (patch) | |
tree | 5bf792e38573f8d1a54d1c70c1c3427f692533e8 /src/glx/glxclient.h | |
parent | fbd7448977efd49afba322cbb0853e9981ec2d2d (diff) |
glx: Allow a context-specific fallback for glXGetProcAddress
In applegl, GLX advertises the same extensions provided by OpenGL.framework
even if such extensions are not provided by glapi. This allows a client
to get access to such API.
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'src/glx/glxclient.h')
-rw-r--r-- | src/glx/glxclient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 88a6edd097..0641528816 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -224,7 +224,7 @@ struct glx_context_vtable { GLXDrawable drawable, int buffer, const int *attrib_list); void (*release_tex_image)(Display * dpy, GLXDrawable drawable, int buffer); - + void * (*get_proc_address)(const char *symbol); }; extern void |