diff options
author | Emil Velikov <[email protected]> | 2018-03-05 18:30:40 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-03-12 14:48:52 +0000 |
commit | 2c765b0d9a292ea93611f8e00abc5698f6fdfcea (patch) | |
tree | b7a6951c257f737a464d01e14f3050bba00e4f3f /src/gallium | |
parent | afab516f5f7405ae33a8185d48600816133e0150 (diff) |
gallium/x11: remove empty GLX_SGIX_swap_group stubs
The extension was never implemented. Quick search suggests:
- no actual users (on my Arch setup)
- the Nvidia driver does not implement the extension
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Ian Romanick <[email protected]>
Acked-by: Brian Paul <[email protected]>
Reviewed-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/glx/xlib/glx_api.c | 12 | ||||
-rw-r--r-- | src/gallium/state_trackers/glx/xlib/glx_getproc.c | 3 |
2 files changed, 0 insertions, 15 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/glx_api.c b/src/gallium/state_trackers/glx/xlib/glx_api.c index 80bf3e5494f..3bd07c280d0 100644 --- a/src/gallium/state_trackers/glx/xlib/glx_api.c +++ b/src/gallium/state_trackers/glx/xlib/glx_api.c @@ -2647,18 +2647,6 @@ glXAssociateDMPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuffer, #endif -/*** GLX_SGIX_swap_group ***/ - -PUBLIC void -glXJoinSwapGroupSGIX(Display *dpy, GLXDrawable drawable, GLXDrawable member) -{ - (void) dpy; - (void) drawable; - (void) member; -} - - - /*** GLX_SUN_get_transparent_index ***/ PUBLIC Status diff --git a/src/gallium/state_trackers/glx/xlib/glx_getproc.c b/src/gallium/state_trackers/glx/xlib/glx_getproc.c index 71d3ad8c8a7..58b476341db 100644 --- a/src/gallium/state_trackers/glx/xlib/glx_getproc.c +++ b/src/gallium/state_trackers/glx/xlib/glx_getproc.c @@ -147,9 +147,6 @@ static struct name_address_pair GLX_functions[] = { { "glXAssociateDMPbufferSGIX", (__GLXextFuncPtr) glXAssociateDMPbufferSGIX }, #endif - /*** GLX_SGIX_swap_group ***/ - { "glXJoinSwapGroupSGIX", (__GLXextFuncPtr) glXJoinSwapGroupSGIX }, - /*** GLX_SUN_get_transparent_index ***/ { "glXGetTransparentIndexSUN", (__GLXextFuncPtr) glXGetTransparentIndexSUN }, |