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/drisw_glx.c | |
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/drisw_glx.c')
-rw-r--r-- | src/glx/drisw_glx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index 0075695932..07d495595a 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -296,6 +296,7 @@ static const struct glx_context_vtable drisw_context_vtable = { DRI_glXUseXFont, NULL, NULL, + NULL, /* get_proc_address */ }; static struct glx_context * |