diff options
author | Adam Jackson <[email protected]> | 2019-08-20 15:43:06 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-08-22 13:29:04 -0400 |
commit | 3dd299c3d5b88114894ec30d1fac85fba688201f (patch) | |
tree | d76c0ea9b839a661cdddbdcb013c53bdeaccd5e5 /src/gallium | |
parent | 5ebd333c6c8aea0aac301ca2dd56ad6ec8cf8056 (diff) |
glx: Sync <GL/glxext.h> with Khronos
Minor fixups required to keep the prototypes matching and to remove
mention of retired enums.
Acked-by: Eric Engestrom <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/glx/xlib/glx_api.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/glx_api.c b/src/gallium/state_trackers/glx/xlib/glx_api.c index 97c3913b5a4..748efea8649 100644 --- a/src/gallium/state_trackers/glx/xlib/glx_api.c +++ b/src/gallium/state_trackers/glx/xlib/glx_api.c @@ -2495,7 +2495,7 @@ glXDestroyGLXPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuf) } -PUBLIC int +PUBLIC void glXQueryGLXPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuf, int attribute, unsigned int *value) { @@ -2503,7 +2503,7 @@ glXQueryGLXPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuf, int attribute, if (!xmbuf) { /* Generate GLXBadPbufferSGIX for bad pbuffer */ - return 0; + return; } switch (attribute) { @@ -2525,7 +2525,6 @@ glXQueryGLXPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuf, int attribute, default: *value = 0; } - return 0; } @@ -2654,7 +2653,7 @@ glXAssociateDMPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuffer, PUBLIC Status glXGetTransparentIndexSUN(Display *dpy, Window overlay, Window underlay, - long *pTransparent) + unsigned long *pTransparent) { (void) dpy; (void) overlay; |