2 * (C) Copyright IBM Corporation 2004
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
27 * Implementation of pbuffer related functions.
29 * \author Ian Romanick <idr@us.ibm.com>
33 #include "glxclient.h"
34 #include <X11/extensions/extutil.h>
35 #include <X11/extensions/Xext.h>
38 #include "glxextensions.h"
40 #ifdef GLX_USE_APPLEGL
42 #include "apple_glx_drawable.h"
43 #include "glx_error.h"
46 #define WARN_ONCE_GLX_1_3(a, b) { \
47 static int warned=1; \
49 warn_GLX_1_3((a), b ); \
55 * Emit a warning when clients use GLX 1.3 functions on pre-1.3 systems.
58 warn_GLX_1_3(Display
* dpy
, const char *function_name
)
60 struct glx_display
*priv
= __glXInitialize(dpy
);
62 if (priv
->minorVersion
< 3) {
64 "WARNING: Application calling GLX 1.3 function \"%s\" "
65 "when GLX 1.3 is not supported! This is an application bug!\n",
70 #ifndef GLX_USE_APPLEGL
72 * Change a drawable's attribute.
74 * This function is used to implement \c glXSelectEvent and
75 * \c glXSelectEventSGIX.
78 * This function dynamically determines whether to use the SGIX_pbuffer
79 * version of the protocol or the GLX 1.3 version of the protocol.
82 ChangeDrawableAttribute(Display
* dpy
, GLXDrawable drawable
,
83 const CARD32
* attribs
, size_t num_attribs
)
85 struct glx_display
*priv
= __glXInitialize(dpy
);
86 #ifdef GLX_DIRECT_RENDERING
87 __GLXDRIdrawable
*pdraw
;
93 if ((dpy
== NULL
) || (drawable
== 0)) {
97 opcode
= __glXSetupForCommand(dpy
);
103 if ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3)) {
104 xGLXChangeDrawableAttributesReq
*req
;
106 GetReqExtra(GLXChangeDrawableAttributes
, 8 * num_attribs
, req
);
107 output
= (CARD32
*) (req
+ 1);
109 req
->reqType
= opcode
;
110 req
->glxCode
= X_GLXChangeDrawableAttributes
;
111 req
->drawable
= drawable
;
112 req
->numAttribs
= (CARD32
) num_attribs
;
115 xGLXVendorPrivateWithReplyReq
*vpreq
;
117 GetReqExtra(GLXVendorPrivateWithReply
, 8 + (8 * num_attribs
), vpreq
);
118 output
= (CARD32
*) (vpreq
+ 1);
120 vpreq
->reqType
= opcode
;
121 vpreq
->glxCode
= X_GLXVendorPrivateWithReply
;
122 vpreq
->vendorCode
= X_GLXvop_ChangeDrawableAttributesSGIX
;
124 output
[0] = (CARD32
) drawable
;
125 output
[1] = num_attribs
;
129 (void) memcpy(output
, attribs
, sizeof(CARD32
) * 2 * num_attribs
);
134 #ifdef GLX_DIRECT_RENDERING
135 pdraw
= GetGLXDRIDrawable(dpy
, drawable
);
140 for (i
= 0; i
< num_attribs
; i
++) {
141 switch(attribs
[i
* 2]) {
143 /* Keep a local copy for masking out DRI2 proto events as needed */
144 pdraw
->eventMask
= attribs
[i
* 2 + 1];
154 #ifdef GLX_DIRECT_RENDERING
156 determineTextureTarget(const int *attribs
, int numAttribs
)
161 for (i
= 0; i
< numAttribs
; i
++) {
162 if (attribs
[2 * i
] == GLX_TEXTURE_TARGET_EXT
) {
163 switch (attribs
[2 * i
+ 1]) {
164 case GLX_TEXTURE_2D_EXT
:
165 target
= GL_TEXTURE_2D
;
167 case GLX_TEXTURE_RECTANGLE_EXT
:
168 target
= GL_TEXTURE_RECTANGLE_ARB
;
178 determineTextureFormat(const int *attribs
, int numAttribs
)
182 for (i
= 0; i
< numAttribs
; i
++) {
183 if (attribs
[2 * i
] == GLX_TEXTURE_FORMAT_EXT
)
184 return attribs
[2 * i
+ 1];
191 CreateDRIDrawable(Display
*dpy
, struct glx_config
*config
,
192 XID drawable
, XID glxdrawable
,
193 const int *attrib_list
, size_t num_attribs
)
195 struct glx_display
*const priv
= __glXInitialize(dpy
);
196 __GLXDRIdrawable
*pdraw
;
197 struct glx_screen
*psc
;
199 psc
= priv
->screens
[config
->screen
];
200 if (psc
->driScreen
== NULL
)
203 pdraw
= psc
->driScreen
->createDrawable(psc
, drawable
,
204 glxdrawable
, config
);
206 fprintf(stderr
, "failed to create drawable\n");
210 if (__glxHashInsert(priv
->drawHash
, glxdrawable
, pdraw
)) {
211 (*pdraw
->destroyDrawable
) (pdraw
);
215 pdraw
->textureTarget
= determineTextureTarget(attrib_list
, num_attribs
);
216 pdraw
->textureFormat
= determineTextureFormat(attrib_list
, num_attribs
);
222 DestroyDRIDrawable(Display
*dpy
, GLXDrawable drawable
, int destroy_xdrawable
)
224 struct glx_display
*const priv
= __glXInitialize(dpy
);
225 __GLXDRIdrawable
*pdraw
= GetGLXDRIDrawable(dpy
, drawable
);
229 xid
= pdraw
->xDrawable
;
230 (*pdraw
->destroyDrawable
) (pdraw
);
231 __glxHashDelete(priv
->drawHash
, drawable
);
232 if (destroy_xdrawable
)
233 XFreePixmap(priv
->dpy
, xid
);
240 CreateDRIDrawable(Display
*dpy
, const struct glx_config
* fbconfig
,
241 XID drawable
, XID glxdrawable
,
242 const int *attrib_list
, size_t num_attribs
)
248 DestroyDRIDrawable(Display
*dpy
, GLXDrawable drawable
, int destroy_xdrawable
)
255 * Get a drawable's attribute.
257 * This function is used to implement \c glXGetSelectedEvent and
258 * \c glXGetSelectedEventSGIX.
261 * This function dynamically determines whether to use the SGIX_pbuffer
262 * version of the protocol or the GLX 1.3 version of the protocol.
265 * The number of attributes returned is likely to be small, probably less than
266 * 10. Given that, this routine should try to use an array on the stack to
267 * capture the reply rather than always calling Xmalloc.
270 GetDrawableAttribute(Display
* dpy
, GLXDrawable drawable
,
271 int attribute
, unsigned int *value
)
273 struct glx_display
*priv
;
274 xGLXGetDrawableAttributesReply reply
;
279 unsigned int num_attributes
;
280 GLboolean use_glx_1_3
;
282 if ((dpy
== NULL
) || (drawable
== 0)) {
286 priv
= __glXInitialize(dpy
);
287 use_glx_1_3
= ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3));
292 opcode
= __glXSetupForCommand(dpy
);
299 xGLXGetDrawableAttributesReq
*req
;
301 GetReq(GLXGetDrawableAttributes
, req
);
302 req
->reqType
= opcode
;
303 req
->glxCode
= X_GLXGetDrawableAttributes
;
304 req
->drawable
= drawable
;
307 xGLXVendorPrivateWithReplyReq
*vpreq
;
309 GetReqExtra(GLXVendorPrivateWithReply
, 4, vpreq
);
310 data
= (CARD32
*) (vpreq
+ 1);
311 data
[0] = (CARD32
) drawable
;
313 vpreq
->reqType
= opcode
;
314 vpreq
->glxCode
= X_GLXVendorPrivateWithReply
;
315 vpreq
->vendorCode
= X_GLXvop_GetDrawableAttributesSGIX
;
318 _XReply(dpy
, (xReply
*) & reply
, 0, False
);
320 if (reply
.type
== X_Error
) {
326 length
= reply
.length
;
328 num_attributes
= (use_glx_1_3
) ? reply
.numAttribs
: length
/ 2;
329 data
= (CARD32
*) Xmalloc(length
* sizeof(CARD32
));
331 /* Throw data on the floor */
332 _XEatData(dpy
, length
);
335 _XRead(dpy
, (char *) data
, length
* sizeof(CARD32
));
337 /* Search the set of returned attributes for the attribute requested by
340 for (i
= 0; i
< num_attributes
; i
++) {
341 if (data
[i
* 2] == attribute
) {
342 *value
= data
[(i
* 2) + 1];
347 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
349 __GLXDRIdrawable
*pdraw
= GetGLXDRIDrawable(dpy
, drawable
);
351 if (pdraw
!= NULL
&& !pdraw
->textureTarget
)
352 pdraw
->textureTarget
=
353 determineTextureTarget((const int *) data
, num_attributes
);
354 if (pdraw
!= NULL
&& !pdraw
->textureFormat
)
355 pdraw
->textureFormat
=
356 determineTextureFormat((const int *) data
, num_attributes
);
371 protocolDestroyDrawable(Display
*dpy
, GLXDrawable drawable
, CARD32 glxCode
)
373 xGLXDestroyPbufferReq
*req
;
376 opcode
= __glXSetupForCommand(dpy
);
382 GetReq(GLXDestroyPbuffer
, req
);
383 req
->reqType
= opcode
;
384 req
->glxCode
= glxCode
;
385 req
->pbuffer
= (GLXPbuffer
) drawable
;
392 * Create a non-pbuffer GLX drawable.
395 CreateDrawable(Display
*dpy
, struct glx_config
*config
,
396 Drawable drawable
, const int *attrib_list
, CARD8 glxCode
)
398 xGLXCreateWindowReq
*req
;
399 struct glx_drawable
*glxDraw
;
407 while (attrib_list
[i
* 2] != None
)
411 opcode
= __glXSetupForCommand(dpy
);
415 glxDraw
= Xmalloc(sizeof(*glxDraw
));
420 GetReqExtra(GLXCreateWindow
, 8 * i
, req
);
421 data
= (CARD32
*) (req
+ 1);
423 req
->reqType
= opcode
;
424 req
->glxCode
= glxCode
;
425 req
->screen
= config
->screen
;
426 req
->fbconfig
= config
->fbconfigID
;
427 req
->window
= drawable
;
428 req
->glxwindow
= xid
= XAllocID(dpy
);
432 memcpy(data
, attrib_list
, 8 * i
);
437 if (InitGLXDrawable(dpy
, glxDraw
, drawable
, xid
)) {
442 if (!CreateDRIDrawable(dpy
, config
, drawable
, xid
, attrib_list
, i
)) {
443 if (glxCode
== X_GLXCreatePixmap
)
444 glxCode
= X_GLXDestroyPixmap
;
446 glxCode
= X_GLXDestroyWindow
;
447 protocolDestroyDrawable(dpy
, xid
, glxCode
);
456 * Destroy a non-pbuffer GLX drawable.
459 DestroyDrawable(Display
* dpy
, GLXDrawable drawable
, CARD32 glxCode
)
461 if ((dpy
== NULL
) || (drawable
== 0)) {
465 protocolDestroyDrawable(dpy
, drawable
, glxCode
);
467 DestroyGLXDrawable(dpy
, drawable
);
468 DestroyDRIDrawable(dpy
, drawable
, GL_FALSE
);
477 * This function is used to implement \c glXCreatePbuffer and
478 * \c glXCreateGLXPbufferSGIX.
481 * This function dynamically determines whether to use the SGIX_pbuffer
482 * version of the protocol or the GLX 1.3 version of the protocol.
485 CreatePbuffer(Display
* dpy
, struct glx_config
*config
,
486 unsigned int width
, unsigned int height
,
487 const int *attrib_list
, GLboolean size_in_attribs
)
489 struct glx_display
*priv
= __glXInitialize(dpy
);
495 GLboolean glx_1_3
= GL_FALSE
;
499 while (attrib_list
[i
* 2])
503 opcode
= __glXSetupForCommand(dpy
);
510 if ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3)) {
511 xGLXCreatePbufferReq
*req
;
512 unsigned int extra
= (size_in_attribs
) ? 0 : 2;
516 GetReqExtra(GLXCreatePbuffer
, (8 * (i
+ extra
)), req
);
517 data
= (CARD32
*) (req
+ 1);
519 req
->reqType
= opcode
;
520 req
->glxCode
= X_GLXCreatePbuffer
;
521 req
->screen
= config
->screen
;
522 req
->fbconfig
= config
->fbconfigID
;
524 req
->numAttribs
= i
+ extra
;
526 if (!size_in_attribs
) {
527 data
[(2 * i
) + 0] = GLX_PBUFFER_WIDTH
;
528 data
[(2 * i
) + 1] = width
;
529 data
[(2 * i
) + 2] = GLX_PBUFFER_HEIGHT
;
530 data
[(2 * i
) + 3] = height
;
535 xGLXVendorPrivateReq
*vpreq
;
537 GetReqExtra(GLXVendorPrivate
, 20 + (8 * i
), vpreq
);
538 data
= (CARD32
*) (vpreq
+ 1);
540 vpreq
->reqType
= opcode
;
541 vpreq
->glxCode
= X_GLXVendorPrivate
;
542 vpreq
->vendorCode
= X_GLXvop_CreateGLXPbufferSGIX
;
544 data
[0] = config
->screen
;
545 data
[1] = config
->fbconfigID
;
552 (void) memcpy(data
, attrib_list
, sizeof(CARD32
) * 2 * i
);
557 pixmap
= XCreatePixmap(dpy
, RootWindow(dpy
, config
->screen
),
558 width
, height
, config
->rgbBits
);
560 if (!CreateDRIDrawable(dpy
, config
, pixmap
, id
, attrib_list
, i
)) {
561 CARD32 o
= glx_1_3
? X_GLXDestroyPbuffer
: X_GLXvop_DestroyGLXPbufferSGIX
;
562 XFreePixmap(dpy
, pixmap
);
563 protocolDestroyDrawable(dpy
, id
, o
);
573 * This function is used to implement \c glXDestroyPbuffer and
574 * \c glXDestroyGLXPbufferSGIX.
577 * This function dynamically determines whether to use the SGIX_pbuffer
578 * version of the protocol or the GLX 1.3 version of the protocol.
581 DestroyPbuffer(Display
* dpy
, GLXDrawable drawable
)
583 struct glx_display
*priv
= __glXInitialize(dpy
);
586 if ((dpy
== NULL
) || (drawable
== 0)) {
590 opcode
= __glXSetupForCommand(dpy
);
596 if ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3)) {
597 xGLXDestroyPbufferReq
*req
;
599 GetReq(GLXDestroyPbuffer
, req
);
600 req
->reqType
= opcode
;
601 req
->glxCode
= X_GLXDestroyPbuffer
;
602 req
->pbuffer
= (GLXPbuffer
) drawable
;
605 xGLXVendorPrivateWithReplyReq
*vpreq
;
608 GetReqExtra(GLXVendorPrivateWithReply
, 4, vpreq
);
609 data
= (CARD32
*) (vpreq
+ 1);
611 data
[0] = (CARD32
) drawable
;
613 vpreq
->reqType
= opcode
;
614 vpreq
->glxCode
= X_GLXVendorPrivateWithReply
;
615 vpreq
->vendorCode
= X_GLXvop_DestroyGLXPbufferSGIX
;
621 DestroyDRIDrawable(dpy
, drawable
, GL_TRUE
);
627 * Create a new pbuffer.
629 _X_EXPORT GLXPbufferSGIX
630 glXCreateGLXPbufferSGIX(Display
* dpy
, GLXFBConfigSGIX config
,
631 unsigned int width
, unsigned int height
,
634 return (GLXPbufferSGIX
) CreatePbuffer(dpy
, (struct glx_config
*) config
,
636 attrib_list
, GL_FALSE
);
639 #endif /* GLX_USE_APPLEGL */
642 * Create a new pbuffer.
645 glXCreatePbuffer(Display
* dpy
, GLXFBConfig config
, const int *attrib_list
)
647 int i
, width
, height
;
648 #ifdef GLX_USE_APPLEGL
656 WARN_ONCE_GLX_1_3(dpy
, __func__
);
658 #ifdef GLX_USE_APPLEGL
659 for (i
= 0; attrib_list
[i
]; ++i
) {
660 switch (attrib_list
[i
]) {
661 case GLX_PBUFFER_WIDTH
:
662 width
= attrib_list
[i
+ 1];
666 case GLX_PBUFFER_HEIGHT
:
667 height
= attrib_list
[i
+ 1];
671 case GLX_LARGEST_PBUFFER
:
672 /* This is a hint we should probably handle, but how? */
676 case GLX_PRESERVED_CONTENTS
:
677 /* The contents are always preserved with AppleSGLX with CGL. */
686 if (apple_glx_pbuffer_create(dpy
, config
, width
, height
, &errorcode
,
689 * apple_glx_pbuffer_create only sets the errorcode to core X11
692 __glXSendError(dpy
, errorcode
, 0, X_GLXCreatePbuffer
, true);
699 for (i
= 0; attrib_list
[i
* 2]; i
++) {
700 switch (attrib_list
[i
* 2]) {
701 case GLX_PBUFFER_WIDTH
:
702 width
= attrib_list
[i
* 2 + 1];
704 case GLX_PBUFFER_HEIGHT
:
705 height
= attrib_list
[i
* 2 + 1];
710 return (GLXPbuffer
) CreatePbuffer(dpy
, (struct glx_config
*) config
,
711 width
, height
, attrib_list
, GL_TRUE
);
717 * Destroy an existing pbuffer.
720 glXDestroyPbuffer(Display
* dpy
, GLXPbuffer pbuf
)
722 #ifdef GLX_USE_APPLEGL
723 if (apple_glx_pbuffer_destroy(dpy
, pbuf
)) {
724 __glXSendError(dpy
, GLXBadPbuffer
, pbuf
, X_GLXDestroyPbuffer
, false);
727 DestroyPbuffer(dpy
, pbuf
);
733 * Query an attribute of a drawable.
736 glXQueryDrawable(Display
* dpy
, GLXDrawable drawable
,
737 int attribute
, unsigned int *value
)
739 WARN_ONCE_GLX_1_3(dpy
, __func__
);
740 #ifdef GLX_USE_APPLEGL
743 unsigned int width
, height
, bd
, depth
;
745 if (apple_glx_pixmap_query(drawable
, attribute
, value
))
748 if (apple_glx_pbuffer_query(drawable
, attribute
, value
))
752 * The OpenGL spec states that we should report GLXBadDrawable if
753 * the drawable is invalid, however doing so would require that we
754 * use XSetErrorHandler(), which is known to not be thread safe.
755 * If we use a round-trip call to validate the drawable, there could
756 * be a race, so instead we just opt in favor of letting the
757 * XGetGeometry request fail with a GetGeometry request X error
758 * rather than GLXBadDrawable, in what is hoped to be a rare
759 * case of an invalid drawable. In practice most and possibly all
760 * X11 apps using GLX shouldn't notice a difference.
763 (dpy
, drawable
, &root
, &x
, &y
, &width
, &height
, &bd
, &depth
)) {
775 GetDrawableAttribute(dpy
, drawable
, attribute
, value
);
780 #ifndef GLX_USE_APPLEGL
782 * Query an attribute of a pbuffer.
785 glXQueryGLXPbufferSGIX(Display
* dpy
, GLXPbufferSGIX drawable
,
786 int attribute
, unsigned int *value
)
788 return GetDrawableAttribute(dpy
, drawable
, attribute
, value
);
793 * Select the event mask for a drawable.
796 glXSelectEvent(Display
* dpy
, GLXDrawable drawable
, unsigned long mask
)
798 #ifdef GLX_USE_APPLEGL
799 XWindowAttributes xwattr
;
801 if (apple_glx_pbuffer_set_event_mask(drawable
, mask
))
805 * The spec allows a window, but currently there are no valid
806 * events for a window, so do nothing.
808 if (XGetWindowAttributes(dpy
, drawable
, &xwattr
))
810 /* The drawable seems to be invalid. Report an error. */
812 __glXSendError(dpy
, GLXBadDrawable
, drawable
,
813 X_GLXChangeDrawableAttributes
, false);
817 attribs
[0] = (CARD32
) GLX_EVENT_MASK
;
818 attribs
[1] = (CARD32
) mask
;
820 ChangeDrawableAttribute(dpy
, drawable
, attribs
, 1);
826 * Get the selected event mask for a drawable.
829 glXGetSelectedEvent(Display
* dpy
, GLXDrawable drawable
, unsigned long *mask
)
831 #ifdef GLX_USE_APPLEGL
832 XWindowAttributes xwattr
;
834 if (apple_glx_pbuffer_get_event_mask(drawable
, mask
))
838 * The spec allows a window, but currently there are no valid
839 * events for a window, so do nothing, but set the mask to 0.
841 if (XGetWindowAttributes(dpy
, drawable
, &xwattr
)) {
842 /* The window is valid, so set the mask to 0. */
846 /* The drawable seems to be invalid. Report an error. */
848 __glXSendError(dpy
, GLXBadDrawable
, drawable
, X_GLXGetDrawableAttributes
,
854 /* The non-sense with value is required because on LP64 platforms
855 * sizeof(unsigned int) != sizeof(unsigned long). On little-endian
856 * we could just type-cast the pointer, but why?
859 GetDrawableAttribute(dpy
, drawable
, GLX_EVENT_MASK_SGIX
, &value
);
866 glXCreatePixmap(Display
* dpy
, GLXFBConfig config
, Pixmap pixmap
,
867 const int *attrib_list
)
869 WARN_ONCE_GLX_1_3(dpy
, __func__
);
871 #ifdef GLX_USE_APPLEGL
872 const struct glx_config
*modes
= (const struct glx_config
*) config
;
874 if (apple_glx_pixmap_create(dpy
, modes
->screen
, pixmap
, modes
))
879 return CreateDrawable(dpy
, (struct glx_config
*) config
,
880 (Drawable
) pixmap
, attrib_list
, X_GLXCreatePixmap
);
886 glXCreateWindow(Display
* dpy
, GLXFBConfig config
, Window win
,
887 const int *attrib_list
)
889 WARN_ONCE_GLX_1_3(dpy
, __func__
);
890 #ifdef GLX_USE_APPLEGL
891 XWindowAttributes xwattr
;
892 XVisualInfo
*visinfo
;
894 (void) attrib_list
; /*unused according to GLX 1.4 */
896 XGetWindowAttributes(dpy
, win
, &xwattr
);
898 visinfo
= glXGetVisualFromFBConfig(dpy
, config
);
900 if (NULL
== visinfo
) {
901 __glXSendError(dpy
, GLXBadFBConfig
, 0, X_GLXCreateWindow
, false);
905 if (visinfo
->visualid
!= XVisualIDFromVisual(xwattr
.visual
)) {
906 __glXSendError(dpy
, BadMatch
, 0, X_GLXCreateWindow
, true);
914 return CreateDrawable(dpy
, (struct glx_config
*) config
,
915 (Drawable
) win
, attrib_list
, X_GLXCreateWindow
);
921 glXDestroyPixmap(Display
* dpy
, GLXPixmap pixmap
)
923 WARN_ONCE_GLX_1_3(dpy
, __func__
);
924 #ifdef GLX_USE_APPLEGL
925 if (apple_glx_pixmap_destroy(dpy
, pixmap
))
926 __glXSendError(dpy
, GLXBadPixmap
, pixmap
, X_GLXDestroyPixmap
, false);
928 DestroyDrawable(dpy
, (GLXDrawable
) pixmap
, X_GLXDestroyPixmap
);
934 glXDestroyWindow(Display
* dpy
, GLXWindow win
)
936 WARN_ONCE_GLX_1_3(dpy
, __func__
);
937 #ifndef GLX_USE_APPLEGL
938 DestroyDrawable(dpy
, (GLXDrawable
) win
, X_GLXDestroyWindow
);
942 #ifndef GLX_USE_APPLEGL
944 GLX_ALIAS_VOID(glXDestroyGLXPbufferSGIX
,
945 (Display
* dpy
, GLXPbufferSGIX pbuf
),
946 (dpy
, pbuf
), glXDestroyPbuffer
)
949 GLX_ALIAS_VOID(glXSelectEventSGIX
,
950 (Display
* dpy
, GLXDrawable drawable
,
951 unsigned long mask
), (dpy
, drawable
, mask
), glXSelectEvent
)
954 GLX_ALIAS_VOID(glXGetSelectedEventSGIX
,
955 (Display
* dpy
, GLXDrawable drawable
,
956 unsigned long *mask
), (dpy
, drawable
, mask
),