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 #define WARN_ONCE_GLX_1_3(a, b) { \
41 static int warned=1; \
43 warn_GLX_1_3((a), b ); \
49 * Emit a warning when clients use GLX 1.3 functions on pre-1.3 systems.
52 warn_GLX_1_3(Display
*dpy
, const char *function_name
)
54 __GLXdisplayPrivate
*priv
= __glXInitialize(dpy
);
56 if (priv
->minorVersion
< 3) {
58 "WARNING: Application calling GLX 1.3 function \"%s\" "
59 "when GLX 1.3 is not supported! This is an application bug!\n",
66 * Change a drawable's attribute.
68 * This function is used to implement \c glXSelectEvent and
69 * \c glXSelectEventSGIX.
72 * This function dynamically determines whether to use the SGIX_pbuffer
73 * version of the protocol or the GLX 1.3 version of the protocol.
76 * This function needs to be modified to work with direct-rendering drivers.
79 ChangeDrawableAttribute(Display
* dpy
, GLXDrawable drawable
,
80 const CARD32
* attribs
, size_t num_attribs
)
82 __GLXdisplayPrivate
*priv
= __glXInitialize(dpy
);
86 if ((dpy
== NULL
) || (drawable
== 0)) {
90 opcode
= __glXSetupForCommand(dpy
);
96 if ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3)) {
97 xGLXChangeDrawableAttributesReq
*req
;
99 GetReqExtra(GLXChangeDrawableAttributes
, 8 + (8 * num_attribs
), req
);
100 output
= (CARD32
*) (req
+ 1);
102 req
->reqType
= opcode
;
103 req
->glxCode
= X_GLXChangeDrawableAttributes
;
104 req
->drawable
= drawable
;
105 req
->numAttribs
= (CARD32
) num_attribs
;
108 xGLXVendorPrivateWithReplyReq
*vpreq
;
110 GetReqExtra(GLXVendorPrivateWithReply
, 4 + (8 * num_attribs
), vpreq
);
111 output
= (CARD32
*) (vpreq
+ 1);
113 vpreq
->reqType
= opcode
;
114 vpreq
->glxCode
= X_GLXVendorPrivateWithReply
;
115 vpreq
->vendorCode
= X_GLXvop_ChangeDrawableAttributesSGIX
;
117 output
[0] = (CARD32
) drawable
;
121 (void) memcpy(output
, attribs
, sizeof(CARD32
) * 2 * num_attribs
);
133 * This function is used to implement \c glXDestroyPbuffer and
134 * \c glXDestroyGLXPbufferSGIX.
137 * This function dynamically determines whether to use the SGIX_pbuffer
138 * version of the protocol or the GLX 1.3 version of the protocol.
141 * This function needs to be modified to work with direct-rendering drivers.
144 DestroyPbuffer(Display
* dpy
, GLXDrawable drawable
)
146 __GLXdisplayPrivate
*priv
= __glXInitialize(dpy
);
149 if ((dpy
== NULL
) || (drawable
== 0)) {
153 opcode
= __glXSetupForCommand(dpy
);
159 if ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3)) {
160 xGLXDestroyPbufferReq
*req
;
162 GetReq(GLXDestroyPbuffer
, req
);
163 req
->reqType
= opcode
;
164 req
->glxCode
= X_GLXDestroyPbuffer
;
165 req
->pbuffer
= (GLXPbuffer
) drawable
;
168 xGLXVendorPrivateWithReplyReq
*vpreq
;
171 GetReqExtra(GLXVendorPrivateWithReply
, 4, vpreq
);
172 data
= (CARD32
*) (vpreq
+ 1);
174 data
[0] = (CARD32
) drawable
;
176 vpreq
->reqType
= opcode
;
177 vpreq
->glxCode
= X_GLXVendorPrivateWithReply
;
178 vpreq
->vendorCode
= X_GLXvop_DestroyGLXPbufferSGIX
;
188 #ifdef GLX_DIRECT_RENDERING
190 determineTextureTarget(const int *attribs
, int numAttribs
)
195 for (i
= 0; i
< numAttribs
; i
++) {
196 if (attribs
[2 * i
] == GLX_TEXTURE_TARGET_EXT
) {
197 switch (attribs
[2 * i
+ 1]) {
198 case GLX_TEXTURE_2D_EXT
:
199 target
= GL_TEXTURE_2D
;
201 case GLX_TEXTURE_RECTANGLE_EXT
:
202 target
= GL_TEXTURE_RECTANGLE_ARB
;
213 determineTextureFormat(const int *attribs
, int numAttribs
)
217 for (i
= 0; i
< numAttribs
; i
++) {
218 if (attribs
[2 * i
] == GLX_TEXTURE_FORMAT_EXT
)
219 return attribs
[2 * i
+ 1];
227 * Get a drawable's attribute.
229 * This function is used to implement \c glXGetSelectedEvent and
230 * \c glXGetSelectedEventSGIX.
233 * This function dynamically determines whether to use the SGIX_pbuffer
234 * version of the protocol or the GLX 1.3 version of the protocol.
237 * The number of attributes returned is likely to be small, probably less than
238 * 10. Given that, this routine should try to use an array on the stack to
239 * capture the reply rather than always calling Xmalloc.
242 * This function needs to be modified to work with direct-rendering drivers.
245 GetDrawableAttribute(Display
* dpy
, GLXDrawable drawable
,
246 int attribute
, unsigned int *value
)
248 __GLXdisplayPrivate
*priv
;
249 xGLXGetDrawableAttributesReply reply
;
254 unsigned int num_attributes
;
255 GLboolean use_glx_1_3
;
257 if ((dpy
== NULL
) || (drawable
== 0)) {
261 priv
= __glXInitialize(dpy
);
262 use_glx_1_3
= ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3));
267 opcode
= __glXSetupForCommand(dpy
);
274 xGLXGetDrawableAttributesReq
*req
;
276 GetReqExtra(GLXGetDrawableAttributes
, 4, req
);
277 req
->reqType
= opcode
;
278 req
->glxCode
= X_GLXGetDrawableAttributes
;
279 req
->drawable
= drawable
;
282 xGLXVendorPrivateWithReplyReq
*vpreq
;
284 GetReqExtra(GLXVendorPrivateWithReply
, 4, vpreq
);
285 data
= (CARD32
*) (vpreq
+ 1);
286 data
[0] = (CARD32
) drawable
;
288 vpreq
->reqType
= opcode
;
289 vpreq
->glxCode
= X_GLXVendorPrivateWithReply
;
290 vpreq
->vendorCode
= X_GLXvop_GetDrawableAttributesSGIX
;
293 _XReply(dpy
, (xReply
*) & reply
, 0, False
);
295 if (reply
.type
== X_Error
) {
301 length
= reply
.length
;
303 num_attributes
= (use_glx_1_3
) ? reply
.numAttribs
: length
/ 2;
304 data
= (CARD32
*) Xmalloc(length
* sizeof(CARD32
));
306 /* Throw data on the floor */
307 _XEatData(dpy
, length
);
310 _XRead(dpy
, (char *) data
, length
* sizeof(CARD32
));
312 /* Search the set of returned attributes for the attribute requested by
315 for (i
= 0; i
< num_attributes
; i
++) {
316 if (data
[i
* 2] == attribute
) {
317 *value
= data
[(i
* 2) + 1];
322 #ifdef GLX_DIRECT_RENDERING
324 __GLXDRIdrawable
*pdraw
= GetGLXDRIDrawable(dpy
, drawable
, NULL
);
326 if (pdraw
!= NULL
&& !pdraw
->textureTarget
)
327 pdraw
->textureTarget
=
328 determineTextureTarget((const int *) data
, num_attributes
);
329 if (pdraw
!= NULL
&& !pdraw
->textureFormat
)
330 pdraw
->textureFormat
=
331 determineTextureFormat((const int *) data
, num_attributes
);
346 * Create a non-pbuffer GLX drawable.
349 * This function needs to be modified to work with direct-rendering drivers.
352 CreateDrawable(Display
* dpy
, const __GLcontextModes
* fbconfig
,
353 Drawable drawable
, const int *attrib_list
, CARD8 glxCode
)
355 xGLXCreateWindowReq
*req
;
362 while (attrib_list
[i
* 2] != None
)
366 opcode
= __glXSetupForCommand(dpy
);
371 GetReqExtra(GLXCreateWindow
, 8 * i
, req
);
372 data
= (CARD32
*) (req
+ 1);
374 req
->reqType
= opcode
;
375 req
->glxCode
= glxCode
;
376 req
->screen
= (CARD32
) fbconfig
->screen
;
377 req
->fbconfig
= fbconfig
->fbconfigID
;
378 req
->window
= (CARD32
) drawable
;
379 req
->glxwindow
= (GLXWindow
) XAllocID(dpy
);
380 req
->numAttribs
= (CARD32
) i
;
383 memcpy(data
, attrib_list
, 8 * i
);
388 #ifdef GLX_DIRECT_RENDERING
390 /* FIXME: Maybe delay __DRIdrawable creation until the drawable
391 * is actually bound to a context... */
393 __GLXdisplayPrivate
*const priv
= __glXInitialize(dpy
);
394 __GLXDRIdrawable
*pdraw
;
395 __GLXscreenConfigs
*psc
;
397 psc
= &priv
->screenConfigs
[fbconfig
->screen
];
398 if (psc
->driScreen
== NULL
)
400 pdraw
= psc
->driScreen
->createDrawable(psc
, drawable
,
401 req
->glxwindow
, fbconfig
);
403 fprintf(stderr
, "failed to create drawable\n");
407 if (__glxHashInsert(psc
->drawHash
, req
->glxwindow
, pdraw
)) {
408 (*pdraw
->destroyDrawable
) (pdraw
);
409 return None
; /* FIXME: Check what we're supposed to do here... */
412 pdraw
->textureTarget
= determineTextureTarget(attrib_list
, i
);
413 pdraw
->textureFormat
= determineTextureFormat(attrib_list
, i
);
417 return (GLXDrawable
) req
->glxwindow
;
422 * Destroy a non-pbuffer GLX drawable.
425 * This function needs to be modified to work with direct-rendering drivers.
428 DestroyDrawable(Display
* dpy
, GLXDrawable drawable
, CARD32 glxCode
)
430 xGLXDestroyPbufferReq
*req
;
433 if ((dpy
== NULL
) || (drawable
== 0)) {
438 opcode
= __glXSetupForCommand(dpy
);
444 GetReqExtra(GLXDestroyPbuffer
, 4, req
);
445 req
->reqType
= opcode
;
446 req
->glxCode
= glxCode
;
447 req
->pbuffer
= (GLXPbuffer
) drawable
;
452 #ifdef GLX_DIRECT_RENDERING
455 __GLXdisplayPrivate
*const priv
= __glXInitialize(dpy
);
456 __GLXDRIdrawable
*pdraw
= GetGLXDRIDrawable(dpy
, drawable
, &screen
);
457 __GLXscreenConfigs
*psc
= &priv
->screenConfigs
[screen
];
460 (*pdraw
->destroyDrawable
) (pdraw
);
461 __glxHashDelete(psc
->drawHash
, drawable
);
473 * This function is used to implement \c glXCreatePbuffer and
474 * \c glXCreateGLXPbufferSGIX.
477 * This function dynamically determines whether to use the SGIX_pbuffer
478 * version of the protocol or the GLX 1.3 version of the protocol.
481 * This function needs to be modified to work with direct-rendering drivers.
484 CreatePbuffer(Display
* dpy
, const __GLcontextModes
* fbconfig
,
485 unsigned int width
, unsigned int height
,
486 const int *attrib_list
, GLboolean size_in_attribs
)
488 __GLXdisplayPrivate
*priv
= __glXInitialize(dpy
);
496 while (attrib_list
[i
* 2])
500 opcode
= __glXSetupForCommand(dpy
);
507 if ((priv
->majorVersion
> 1) || (priv
->minorVersion
>= 3)) {
508 xGLXCreatePbufferReq
*req
;
509 unsigned int extra
= (size_in_attribs
) ? 0 : 2;
511 GetReqExtra(GLXCreatePbuffer
, (8 * (i
+ extra
)), req
);
512 data
= (CARD32
*) (req
+ 1);
514 req
->reqType
= opcode
;
515 req
->glxCode
= X_GLXCreatePbuffer
;
516 req
->screen
= (CARD32
) fbconfig
->screen
;
517 req
->fbconfig
= fbconfig
->fbconfigID
;
518 req
->pbuffer
= (GLXPbuffer
) id
;
519 req
->numAttribs
= (CARD32
) (i
+ extra
);
521 if (!size_in_attribs
) {
522 data
[(2 * i
) + 0] = GLX_PBUFFER_WIDTH
;
523 data
[(2 * i
) + 1] = width
;
524 data
[(2 * i
) + 2] = GLX_PBUFFER_HEIGHT
;
525 data
[(2 * i
) + 3] = height
;
530 xGLXVendorPrivateReq
*vpreq
;
532 GetReqExtra(GLXVendorPrivate
, 20 + (8 * i
), vpreq
);
533 data
= (CARD32
*) (vpreq
+ 1);
535 vpreq
->reqType
= opcode
;
536 vpreq
->glxCode
= X_GLXVendorPrivate
;
537 vpreq
->vendorCode
= X_GLXvop_CreateGLXPbufferSGIX
;
539 data
[0] = (CARD32
) fbconfig
->screen
;
540 data
[1] = (CARD32
) fbconfig
->fbconfigID
;
541 data
[2] = (CARD32
) id
;
542 data
[3] = (CARD32
) width
;
543 data
[4] = (CARD32
) height
;
547 (void) memcpy(data
, attrib_list
, sizeof(CARD32
) * 2 * i
);
557 * Create a new pbuffer.
559 PUBLIC GLXPbufferSGIX
560 glXCreateGLXPbufferSGIX(Display
* dpy
, GLXFBConfigSGIX config
,
561 unsigned int width
, unsigned int height
,
564 return (GLXPbufferSGIX
) CreatePbuffer(dpy
, (__GLcontextModes
*) config
,
566 attrib_list
, GL_FALSE
);
571 * Create a new pbuffer.
574 glXCreatePbuffer(Display
* dpy
, GLXFBConfig config
, const int *attrib_list
)
576 int i
, width
, height
;
581 WARN_ONCE_GLX_1_3(dpy
, __func__
);
583 for (i
= 0; attrib_list
[i
* 2]; i
++) {
584 switch (attrib_list
[i
* 2]) {
585 case GLX_PBUFFER_WIDTH
:
586 width
= attrib_list
[i
* 2 + 1];
588 case GLX_PBUFFER_HEIGHT
:
589 height
= attrib_list
[i
* 2 + 1];
594 return (GLXPbuffer
) CreatePbuffer(dpy
, (__GLcontextModes
*) config
,
595 width
, height
, attrib_list
, GL_TRUE
);
600 * Destroy an existing pbuffer.
603 glXDestroyPbuffer(Display
* dpy
, GLXPbuffer pbuf
)
605 DestroyPbuffer(dpy
, pbuf
);
610 * Query an attribute of a drawable.
613 glXQueryDrawable(Display
* dpy
, GLXDrawable drawable
,
614 int attribute
, unsigned int *value
)
616 WARN_ONCE_GLX_1_3(dpy
, __func__
);
617 GetDrawableAttribute(dpy
, drawable
, attribute
, value
);
622 * Query an attribute of a pbuffer.
625 glXQueryGLXPbufferSGIX(Display
* dpy
, GLXPbufferSGIX drawable
,
626 int attribute
, unsigned int *value
)
628 return GetDrawableAttribute(dpy
, drawable
, attribute
, value
);
633 * Select the event mask for a drawable.
636 glXSelectEvent(Display
* dpy
, GLXDrawable drawable
, unsigned long mask
)
640 attribs
[0] = (CARD32
) GLX_EVENT_MASK
;
641 attribs
[1] = (CARD32
) mask
;
643 ChangeDrawableAttribute(dpy
, drawable
, attribs
, 1);
648 * Get the selected event mask for a drawable.
651 glXGetSelectedEvent(Display
* dpy
, GLXDrawable drawable
, unsigned long *mask
)
656 /* The non-sense with value is required because on LP64 platforms
657 * sizeof(unsigned int) != sizeof(unsigned long). On little-endian
658 * we could just type-cast the pointer, but why?
661 GetDrawableAttribute(dpy
, drawable
, GLX_EVENT_MASK_SGIX
, &value
);
667 glXCreatePixmap(Display
* dpy
, GLXFBConfig config
, Pixmap pixmap
,
668 const int *attrib_list
)
670 WARN_ONCE_GLX_1_3(dpy
, __func__
);
672 return CreateDrawable(dpy
, (__GLcontextModes
*) config
,
673 (Drawable
) pixmap
, attrib_list
, X_GLXCreatePixmap
);
678 glXCreateWindow(Display
* dpy
, GLXFBConfig config
, Window win
,
679 const int *attrib_list
)
681 WARN_ONCE_GLX_1_3(dpy
, __func__
);
683 return CreateDrawable(dpy
, (__GLcontextModes
*) config
,
684 (Drawable
) win
, attrib_list
, X_GLXCreateWindow
);
689 glXDestroyPixmap(Display
* dpy
, GLXPixmap pixmap
)
691 WARN_ONCE_GLX_1_3(dpy
, __func__
);
693 DestroyDrawable(dpy
, (GLXDrawable
) pixmap
, X_GLXDestroyPixmap
);
698 glXDestroyWindow(Display
* dpy
, GLXWindow win
)
700 WARN_ONCE_GLX_1_3(dpy
, __func__
);
702 DestroyDrawable(dpy
, (GLXDrawable
) win
, X_GLXDestroyWindow
);
707 GLX_ALIAS_VOID(glXDestroyGLXPbufferSGIX
,
708 (Display
* dpy
, GLXPbufferSGIX pbuf
),
709 (dpy
, pbuf
), glXDestroyPbuffer
)
712 GLX_ALIAS_VOID(glXSelectEventSGIX
,
713 (Display
* dpy
, GLXDrawable drawable
,
714 unsigned long mask
), (dpy
, drawable
, mask
), glXSelectEvent
)
717 GLX_ALIAS_VOID(glXGetSelectedEventSGIX
,
718 (Display
* dpy
, GLXDrawable drawable
,
719 unsigned long *mask
), (dpy
, drawable
, mask
),