blob: 52e067165c8c1a127f9ab289a8bd4708c4aef079 [file] [log] [blame]
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001/*
2 * (C) Copyright IBM Corporation 2004
3 * All Rights Reserved.
4 *
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:
11 *
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
14 * Software.
15 *
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.
23 */
24
25/**
26 * \file glx_pbuffer.c
27 * Implementation of pbuffer related functions.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020028 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +000029 * \author Ian Romanick <idr@us.ibm.com>
30 */
31
32#include <inttypes.h>
33#include "glxclient.h"
Brian Paul82dfd4b2005-08-11 14:18:53 +000034#include <X11/extensions/extutil.h>
35#include <X11/extensions/Xext.h>
Adam Jacksoncb3610e2004-10-25 21:09:16 +000036#include <assert.h>
37#include <string.h>
Adam Jacksoncb3610e2004-10-25 21:09:16 +000038#include "glxextensions.h"
Adam Jacksoncb3610e2004-10-25 21:09:16 +000039
Tormod Voldene8573032009-09-20 20:20:01 +020040#define WARN_ONCE_GLX_1_3(a, b) { \
41 static int warned=1; \
42 if(warned) { \
43 warn_GLX_1_3((a), b ); \
44 warned=0; \
45 } \
46 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +000047
48/**
Ian Romanick1f309c42009-09-15 13:12:22 -070049 * Emit a warning when clients use GLX 1.3 functions on pre-1.3 systems.
50 */
51static void
52warn_GLX_1_3(Display *dpy, const char *function_name)
53{
54 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
55
56 if (priv->minorVersion < 3) {
57 fprintf(stderr,
58 "WARNING: Application calling GLX 1.3 function \"%s\" "
59 "when GLX 1.3 is not supported! This is an application bug!\n",
60 function_name);
61 }
62}
63
64
65/**
Adam Jacksoncb3610e2004-10-25 21:09:16 +000066 * Change a drawable's attribute.
67 *
68 * This function is used to implement \c glXSelectEvent and
69 * \c glXSelectEventSGIX.
70 *
71 * \note
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.
74 *
75 * \todo
76 * This function needs to be modified to work with direct-rendering drivers.
77 */
78static void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +020079ChangeDrawableAttribute(Display * dpy, GLXDrawable drawable,
80 const CARD32 * attribs, size_t num_attribs)
Adam Jacksoncb3610e2004-10-25 21:09:16 +000081{
82 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +020083 CARD32 *output;
Kristian Høgsbergc25eb992006-06-13 01:41:18 +000084 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +000085
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +020086 if ((dpy == NULL) || (drawable == 0)) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +000087 return;
88 }
89
Kristian Høgsbergc25eb992006-06-13 01:41:18 +000090 opcode = __glXSetupForCommand(dpy);
91 if (!opcode)
92 return;
Adam Jacksoncb3610e2004-10-25 21:09:16 +000093
94 LockDisplay(dpy);
95
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +020096 if ((priv->majorVersion > 1) || (priv->minorVersion >= 3)) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +000097 xGLXChangeDrawableAttributesReq *req;
98
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +020099 GetReqExtra(GLXChangeDrawableAttributes, 8 + (8 * num_attribs), req);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000100 output = (CARD32 *) (req + 1);
101
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000102 req->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000103 req->glxCode = X_GLXChangeDrawableAttributes;
104 req->drawable = drawable;
105 req->numAttribs = (CARD32) num_attribs;
106 }
107 else {
108 xGLXVendorPrivateWithReplyReq *vpreq;
109
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200110 GetReqExtra(GLXVendorPrivateWithReply, 4 + (8 * num_attribs), vpreq);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000111 output = (CARD32 *) (vpreq + 1);
112
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000113 vpreq->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000114 vpreq->glxCode = X_GLXVendorPrivateWithReply;
115 vpreq->vendorCode = X_GLXvop_ChangeDrawableAttributesSGIX;
116
117 output[0] = (CARD32) drawable;
118 output++;
119 }
120
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200121 (void) memcpy(output, attribs, sizeof(CARD32) * 2 * num_attribs);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000122
123 UnlockDisplay(dpy);
124 SyncHandle();
125
126 return;
127}
128
129
130/**
131 * Destroy a pbuffer.
132 *
133 * This function is used to implement \c glXDestroyPbuffer and
134 * \c glXDestroyGLXPbufferSGIX.
135 *
136 * \note
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.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200139 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000140 * \todo
141 * This function needs to be modified to work with direct-rendering drivers.
142 */
143static void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200144DestroyPbuffer(Display * dpy, GLXDrawable drawable)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000145{
146 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000147 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000148
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200149 if ((dpy == NULL) || (drawable == 0)) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000150 return;
151 }
152
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000153 opcode = __glXSetupForCommand(dpy);
154 if (!opcode)
155 return;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000156
157 LockDisplay(dpy);
158
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200159 if ((priv->majorVersion > 1) || (priv->minorVersion >= 3)) {
160 xGLXDestroyPbufferReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000161
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200162 GetReq(GLXDestroyPbuffer, req);
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000163 req->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000164 req->glxCode = X_GLXDestroyPbuffer;
165 req->pbuffer = (GLXPbuffer) drawable;
166 }
167 else {
168 xGLXVendorPrivateWithReplyReq *vpreq;
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200169 CARD32 *data;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000170
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200171 GetReqExtra(GLXVendorPrivateWithReply, 4, vpreq);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000172 data = (CARD32 *) (vpreq + 1);
173
174 data[0] = (CARD32) drawable;
175
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000176 vpreq->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000177 vpreq->glxCode = X_GLXVendorPrivateWithReply;
178 vpreq->vendorCode = X_GLXvop_DestroyGLXPbufferSGIX;
179 }
180
181 UnlockDisplay(dpy);
182 SyncHandle();
183
184 return;
185}
186
187
Michel Dänzer236355102008-04-10 15:45:52 -0400188#ifdef GLX_DIRECT_RENDERING
Michel Dänzer236355102008-04-10 15:45:52 -0400189static GLenum
190determineTextureTarget(const int *attribs, int numAttribs)
191{
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200192 GLenum target = 0;
193 int i;
Michel Dänzer236355102008-04-10 15:45:52 -0400194
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200195 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;
200 break;
201 case GLX_TEXTURE_RECTANGLE_EXT:
202 target = GL_TEXTURE_RECTANGLE_ARB;
203 break;
204 }
205 }
206 }
207
208 return target;
Michel Dänzer236355102008-04-10 15:45:52 -0400209}
Eric Anholt66175aa2009-03-18 12:07:09 -0700210
211
212static GLenum
213determineTextureFormat(const int *attribs, int numAttribs)
214{
Eric Anholt66175aa2009-03-18 12:07:09 -0700215 int i;
216
217 for (i = 0; i < numAttribs; i++) {
218 if (attribs[2 * i] == GLX_TEXTURE_FORMAT_EXT)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200219 return attribs[2 * i + 1];
Eric Anholt66175aa2009-03-18 12:07:09 -0700220 }
221
222 return 0;
223}
Michel Dänzer236355102008-04-10 15:45:52 -0400224#endif
225
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000226/**
227 * Get a drawable's attribute.
228 *
229 * This function is used to implement \c glXGetSelectedEvent and
230 * \c glXGetSelectedEventSGIX.
231 *
232 * \note
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.
235 *
236 * \todo
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.
240 *
241 * \todo
242 * This function needs to be modified to work with direct-rendering drivers.
243 */
244static int
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200245GetDrawableAttribute(Display * dpy, GLXDrawable drawable,
246 int attribute, unsigned int *value)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000247{
Adam Jacksond25ad502006-04-07 00:05:50 +0000248 __GLXdisplayPrivate *priv;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000249 xGLXGetDrawableAttributesReply reply;
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200250 CARD32 *data;
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000251 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000252 unsigned int length;
253 unsigned int i;
254 unsigned int num_attributes;
Owain G. Ainsworthb4866f82009-01-11 20:40:07 +0000255 GLboolean use_glx_1_3;
Adam Jacksond25ad502006-04-07 00:05:50 +0000256
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200257 if ((dpy == NULL) || (drawable == 0)) {
Adam Jacksond25ad502006-04-07 00:05:50 +0000258 return 0;
259 }
260
261 priv = __glXInitialize(dpy);
Owain G. Ainsworthb4866f82009-01-11 20:40:07 +0000262 use_glx_1_3 = ((priv->majorVersion > 1) || (priv->minorVersion >= 3));
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000263
Brian Paul42725d62006-02-07 00:39:56 +0000264 *value = 0;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000265
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000266
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000267 opcode = __glXSetupForCommand(dpy);
268 if (!opcode)
269 return 0;
270
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000271 LockDisplay(dpy);
272
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200273 if (use_glx_1_3) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000274 xGLXGetDrawableAttributesReq *req;
275
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200276 GetReqExtra(GLXGetDrawableAttributes, 4, req);
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000277 req->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000278 req->glxCode = X_GLXGetDrawableAttributes;
279 req->drawable = drawable;
280 }
281 else {
282 xGLXVendorPrivateWithReplyReq *vpreq;
283
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200284 GetReqExtra(GLXVendorPrivateWithReply, 4, vpreq);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000285 data = (CARD32 *) (vpreq + 1);
286 data[0] = (CARD32) drawable;
287
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000288 vpreq->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000289 vpreq->glxCode = X_GLXVendorPrivateWithReply;
290 vpreq->vendorCode = X_GLXvop_GetDrawableAttributesSGIX;
291 }
292
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200293 _XReply(dpy, (xReply *) & reply, 0, False);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000294
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200295 if (reply.type == X_Error) {
296 UnlockDisplay(dpy);
297 SyncHandle();
298 return 0;
Brian Paul42725d62006-02-07 00:39:56 +0000299 }
300
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000301 length = reply.length;
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200302 if (length) {
303 num_attributes = (use_glx_1_3) ? reply.numAttribs : length / 2;
304 data = (CARD32 *) Xmalloc(length * sizeof(CARD32));
305 if (data == NULL) {
306 /* Throw data on the floor */
307 _XEatData(dpy, length);
308 }
309 else {
310 _XRead(dpy, (char *) data, length * sizeof(CARD32));
Brian Paul42725d62006-02-07 00:39:56 +0000311
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200312 /* Search the set of returned attributes for the attribute requested by
313 * the caller.
314 */
315 for (i = 0; i < num_attributes; i++) {
316 if (data[i * 2] == attribute) {
317 *value = data[(i * 2) + 1];
318 break;
319 }
320 }
Brian Paul42725d62006-02-07 00:39:56 +0000321
Michel Dänzer236355102008-04-10 15:45:52 -0400322#ifdef GLX_DIRECT_RENDERING
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200323 {
324 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, NULL);
Michel Dänzer236355102008-04-10 15:45:52 -0400325
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200326 if (pdraw != NULL && !pdraw->textureTarget)
327 pdraw->textureTarget =
328 determineTextureTarget((const int *) data, num_attributes);
Eric Anholt66175aa2009-03-18 12:07:09 -0700329 if (pdraw != NULL && !pdraw->textureFormat)
330 pdraw->textureFormat =
331 determineTextureFormat((const int *) data, num_attributes);
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200332 }
Michel Dänzer236355102008-04-10 15:45:52 -0400333#endif
334
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200335 Xfree(data);
336 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000337 }
338
339 UnlockDisplay(dpy);
340 SyncHandle();
341
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000342 return 0;
343}
344
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000345/**
346 * Create a non-pbuffer GLX drawable.
347 *
348 * \todo
349 * This function needs to be modified to work with direct-rendering drivers.
350 */
351static GLXDrawable
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200352CreateDrawable(Display * dpy, const __GLcontextModes * fbconfig,
353 Drawable drawable, const int *attrib_list, CARD8 glxCode)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000354{
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200355 xGLXCreateWindowReq *req;
356 CARD32 *data;
Ian Romanickb47731f2005-03-04 17:53:24 +0000357 unsigned int i;
David Reveman342d1de2006-04-11 12:07:41 +0000358 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000359
Ian Romanickb47731f2005-03-04 17:53:24 +0000360 i = 0;
361 if (attrib_list) {
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200362 while (attrib_list[i * 2] != None)
363 i++;
Ian Romanickb47731f2005-03-04 17:53:24 +0000364 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000365
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000366 opcode = __glXSetupForCommand(dpy);
367 if (!opcode)
368 return None;
David Reveman342d1de2006-04-11 12:07:41 +0000369
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000370 LockDisplay(dpy);
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200371 GetReqExtra(GLXCreateWindow, 8 * i, req);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000372 data = (CARD32 *) (req + 1);
373
David Reveman342d1de2006-04-11 12:07:41 +0000374 req->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000375 req->glxCode = glxCode;
376 req->screen = (CARD32) fbconfig->screen;
377 req->fbconfig = fbconfig->fbconfigID;
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400378 req->window = (CARD32) drawable;
Ian Romanickb47731f2005-03-04 17:53:24 +0000379 req->glxwindow = (GLXWindow) XAllocID(dpy);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000380 req->numAttribs = (CARD32) i;
381
Brian Paul5f40a7a2010-03-02 07:34:29 -0700382 if (attrib_list)
383 memcpy(data, attrib_list, 8 * i);
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200384
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000385 UnlockDisplay(dpy);
386 SyncHandle();
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200387
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400388#ifdef GLX_DIRECT_RENDERING
389 do {
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200390 /* FIXME: Maybe delay __DRIdrawable creation until the drawable
391 * is actually bound to a context... */
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400392
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200393 __GLXdisplayPrivate *const priv = __glXInitialize(dpy);
394 __GLXDRIdrawable *pdraw;
395 __GLXscreenConfigs *psc;
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400396
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200397 psc = &priv->screenConfigs[fbconfig->screen];
398 if (psc->driScreen == NULL)
399 break;
400 pdraw = psc->driScreen->createDrawable(psc, drawable,
401 req->glxwindow, fbconfig);
402 if (pdraw == NULL) {
403 fprintf(stderr, "failed to create drawable\n");
404 break;
405 }
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400406
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200407 if (__glxHashInsert(psc->drawHash, req->glxwindow, pdraw)) {
408 (*pdraw->destroyDrawable) (pdraw);
409 return None; /* FIXME: Check what we're supposed to do here... */
410 }
411
412 pdraw->textureTarget = determineTextureTarget(attrib_list, i);
Eric Anholt66175aa2009-03-18 12:07:09 -0700413 pdraw->textureFormat = determineTextureFormat(attrib_list, i);
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400414 } while (0);
415#endif
416
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200417 return (GLXDrawable) req->glxwindow;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000418}
419
420
421/**
422 * Destroy a non-pbuffer GLX drawable.
423 *
424 * \todo
425 * This function needs to be modified to work with direct-rendering drivers.
426 */
427static void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200428DestroyDrawable(Display * dpy, GLXDrawable drawable, CARD32 glxCode)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000429{
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200430 xGLXDestroyPbufferReq *req;
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000431 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000432
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200433 if ((dpy == NULL) || (drawable == 0)) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000434 return;
435 }
436
437
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000438 opcode = __glXSetupForCommand(dpy);
439 if (!opcode)
440 return;
441
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000442 LockDisplay(dpy);
443
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200444 GetReqExtra(GLXDestroyPbuffer, 4, req);
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000445 req->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000446 req->glxCode = glxCode;
447 req->pbuffer = (GLXPbuffer) drawable;
448
449 UnlockDisplay(dpy);
450 SyncHandle();
451
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400452#ifdef GLX_DIRECT_RENDERING
453 {
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200454 int screen;
455 __GLXdisplayPrivate *const priv = __glXInitialize(dpy);
456 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &screen);
457 __GLXscreenConfigs *psc = &priv->screenConfigs[screen];
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400458
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200459 if (pdraw != NULL) {
460 (*pdraw->destroyDrawable) (pdraw);
461 __glxHashDelete(psc->drawHash, drawable);
462 }
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400463 }
464#endif
465
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000466 return;
467}
468
469
470/**
471 * Create a pbuffer.
472 *
473 * This function is used to implement \c glXCreatePbuffer and
474 * \c glXCreateGLXPbufferSGIX.
475 *
476 * \note
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.
479 *
480 * \todo
481 * This function needs to be modified to work with direct-rendering drivers.
482 */
483static GLXDrawable
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200484CreatePbuffer(Display * dpy, const __GLcontextModes * fbconfig,
485 unsigned int width, unsigned int height,
486 const int *attrib_list, GLboolean size_in_attribs)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000487{
488 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
489 GLXDrawable id = 0;
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200490 CARD32 *data;
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000491 CARD8 opcode;
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200492 unsigned int i;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000493
Ian Romanickb47731f2005-03-04 17:53:24 +0000494 i = 0;
495 if (attrib_list) {
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200496 while (attrib_list[i * 2])
497 i++;
Ian Romanickb47731f2005-03-04 17:53:24 +0000498 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000499
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000500 opcode = __glXSetupForCommand(dpy);
501 if (!opcode)
502 return None;
503
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000504 LockDisplay(dpy);
505 id = XAllocID(dpy);
506
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200507 if ((priv->majorVersion > 1) || (priv->minorVersion >= 3)) {
508 xGLXCreatePbufferReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000509 unsigned int extra = (size_in_attribs) ? 0 : 2;
510
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200511 GetReqExtra(GLXCreatePbuffer, (8 * (i + extra)), req);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000512 data = (CARD32 *) (req + 1);
513
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000514 req->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000515 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);
520
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200521 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;
526 data += 4;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000527 }
528 }
529 else {
530 xGLXVendorPrivateReq *vpreq;
531
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200532 GetReqExtra(GLXVendorPrivate, 20 + (8 * i), vpreq);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000533 data = (CARD32 *) (vpreq + 1);
534
Kristian Høgsbergc25eb992006-06-13 01:41:18 +0000535 vpreq->reqType = opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000536 vpreq->glxCode = X_GLXVendorPrivate;
537 vpreq->vendorCode = X_GLXvop_CreateGLXPbufferSGIX;
538
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;
544 data += 5;
545 }
546
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200547 (void) memcpy(data, attrib_list, sizeof(CARD32) * 2 * i);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000548
549 UnlockDisplay(dpy);
550 SyncHandle();
551
552 return id;
553}
554
555
556/**
557 * Create a new pbuffer.
558 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000559PUBLIC GLXPbufferSGIX
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200560glXCreateGLXPbufferSGIX(Display * dpy, GLXFBConfigSGIX config,
561 unsigned int width, unsigned int height,
562 int *attrib_list)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000563{
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200564 return (GLXPbufferSGIX) CreatePbuffer(dpy, (__GLcontextModes *) config,
565 width, height,
566 attrib_list, GL_FALSE);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000567}
568
569
570/**
571 * Create a new pbuffer.
572 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000573PUBLIC GLXPbuffer
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200574glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int *attrib_list)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000575{
Kristian Høgsberg8b204112007-08-27 14:16:30 -0400576 int i, width, height;
577
578 width = 0;
579 height = 0;
580
Tormod Voldene8573032009-09-20 20:20:01 +0200581 WARN_ONCE_GLX_1_3(dpy, __func__);
Ian Romanick1f309c42009-09-15 13:12:22 -0700582
Kristian Høgsberg8b204112007-08-27 14:16:30 -0400583 for (i = 0; attrib_list[i * 2]; i++) {
584 switch (attrib_list[i * 2]) {
585 case GLX_PBUFFER_WIDTH:
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200586 width = attrib_list[i * 2 + 1];
587 break;
Kristian Høgsberg8b204112007-08-27 14:16:30 -0400588 case GLX_PBUFFER_HEIGHT:
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200589 height = attrib_list[i * 2 + 1];
590 break;
Kristian Høgsberg8b204112007-08-27 14:16:30 -0400591 }
592 }
593
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200594 return (GLXPbuffer) CreatePbuffer(dpy, (__GLcontextModes *) config,
595 width, height, attrib_list, GL_TRUE);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000596}
597
598
599/**
600 * Destroy an existing pbuffer.
601 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000602PUBLIC void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200603glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000604{
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200605 DestroyPbuffer(dpy, pbuf);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000606}
607
608
609/**
610 * Query an attribute of a drawable.
611 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000612PUBLIC void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200613glXQueryDrawable(Display * dpy, GLXDrawable drawable,
614 int attribute, unsigned int *value)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000615{
Tormod Voldene8573032009-09-20 20:20:01 +0200616 WARN_ONCE_GLX_1_3(dpy, __func__);
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200617 GetDrawableAttribute(dpy, drawable, attribute, value);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000618}
619
620
621/**
622 * Query an attribute of a pbuffer.
623 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000624PUBLIC int
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200625glXQueryGLXPbufferSGIX(Display * dpy, GLXPbufferSGIX drawable,
626 int attribute, unsigned int *value)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000627{
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200628 return GetDrawableAttribute(dpy, drawable, attribute, value);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000629}
630
631
632/**
633 * Select the event mask for a drawable.
634 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000635PUBLIC void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200636glXSelectEvent(Display * dpy, GLXDrawable drawable, unsigned long mask)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000637{
638 CARD32 attribs[2];
639
640 attribs[0] = (CARD32) GLX_EVENT_MASK;
641 attribs[1] = (CARD32) mask;
642
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200643 ChangeDrawableAttribute(dpy, drawable, attribs, 1);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000644}
645
646
647/**
648 * Get the selected event mask for a drawable.
649 */
Adam Jackson489ccef2004-12-15 17:18:06 +0000650PUBLIC void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200651glXGetSelectedEvent(Display * dpy, GLXDrawable drawable, unsigned long *mask)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000652{
653 unsigned int value;
654
655
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?
659 */
660
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200661 GetDrawableAttribute(dpy, drawable, GLX_EVENT_MASK_SGIX, &value);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000662 *mask = value;
663}
664
665
Adam Jackson489ccef2004-12-15 17:18:06 +0000666PUBLIC GLXPixmap
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200667glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap,
668 const int *attrib_list)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000669{
Tormod Voldene8573032009-09-20 20:20:01 +0200670 WARN_ONCE_GLX_1_3(dpy, __func__);
Ian Romanick1f309c42009-09-15 13:12:22 -0700671
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200672 return CreateDrawable(dpy, (__GLcontextModes *) config,
673 (Drawable) pixmap, attrib_list, X_GLXCreatePixmap);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000674}
675
676
Adam Jackson489ccef2004-12-15 17:18:06 +0000677PUBLIC GLXWindow
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200678glXCreateWindow(Display * dpy, GLXFBConfig config, Window win,
679 const int *attrib_list)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000680{
Tormod Voldene8573032009-09-20 20:20:01 +0200681 WARN_ONCE_GLX_1_3(dpy, __func__);
Ian Romanick1f309c42009-09-15 13:12:22 -0700682
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200683 return CreateDrawable(dpy, (__GLcontextModes *) config,
684 (Drawable) win, attrib_list, X_GLXCreateWindow);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000685}
686
687
Adam Jackson489ccef2004-12-15 17:18:06 +0000688PUBLIC void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200689glXDestroyPixmap(Display * dpy, GLXPixmap pixmap)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000690{
Tormod Voldene8573032009-09-20 20:20:01 +0200691 WARN_ONCE_GLX_1_3(dpy, __func__);
Ian Romanick1f309c42009-09-15 13:12:22 -0700692
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200693 DestroyDrawable(dpy, (GLXDrawable) pixmap, X_GLXDestroyPixmap);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000694}
695
696
Adam Jackson489ccef2004-12-15 17:18:06 +0000697PUBLIC void
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200698glXDestroyWindow(Display * dpy, GLXWindow win)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000699{
Tormod Voldene8573032009-09-20 20:20:01 +0200700 WARN_ONCE_GLX_1_3(dpy, __func__);
Ian Romanick1f309c42009-09-15 13:12:22 -0700701
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200702 DestroyDrawable(dpy, (GLXDrawable) win, X_GLXDestroyWindow);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000703}
704
705
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200706PUBLIC
707GLX_ALIAS_VOID(glXDestroyGLXPbufferSGIX,
708 (Display * dpy, GLXPbufferSGIX pbuf),
709 (dpy, pbuf), glXDestroyPbuffer)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000710
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200711PUBLIC
712GLX_ALIAS_VOID(glXSelectEventSGIX,
713 (Display * dpy, GLXDrawable drawable,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200714 unsigned long mask), (dpy, drawable, mask), glXSelectEvent)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000715
RALOVICH, Kristóf2d4c26b2008-10-13 14:12:02 +0200716PUBLIC
717GLX_ALIAS_VOID(glXGetSelectedEventSGIX,
718 (Display * dpy, GLXDrawable drawable,
719 unsigned long *mask), (dpy, drawable, mask),
720 glXGetSelectedEvent)
Tormod Voldene8573032009-09-20 20:20:01 +0200721