Merge remote branch 'origin/master' into pipe-video
[mesa.git] / src / glx / glxext.c
1 /*
2 * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
3 * Copyright (C) 1991-2000 Silicon Graphics, Inc. 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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice including the dates of first publication and
13 * either this permission notice or a reference to
14 * http://oss.sgi.com/projects/FreeB/
15 * shall be included in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Except as contained in this notice, the name of Silicon Graphics, Inc.
26 * shall not be used in advertising or otherwise to promote the sale, use or
27 * other dealings in this Software without prior written authorization from
28 * Silicon Graphics, Inc.
29 */
30
31 /**
32 * \file glxext.c
33 * GLX protocol interface boot-strap code.
34 *
35 * Direct rendering support added by Precision Insight, Inc.
36 *
37 * \author Kevin E. Martin <kevin@precisioninsight.com>
38 */
39
40 #include <assert.h>
41 #include "glxclient.h"
42 #include <X11/extensions/Xext.h>
43 #include <X11/extensions/extutil.h>
44 #ifdef GLX_USE_APPLEGL
45 #include "apple_glx.h"
46 #include "apple_visual.h"
47 #endif
48 #include "glxextensions.h"
49
50 #ifdef USE_XCB
51 #include <X11/Xlib-xcb.h>
52 #include <xcb/xcb.h>
53 #include <xcb/glx.h>
54 #endif
55
56
57 #ifdef DEBUG
58 void __glXDumpDrawBuffer(struct glx_context * ctx);
59 #endif
60
61 /*
62 ** You can set this cell to 1 to force the gl drawing stuff to be
63 ** one command per packet
64 */
65 _X_HIDDEN int __glXDebug = 0;
66
67 /* Extension required boiler plate */
68
69 static const char __glXExtensionName[] = GLX_EXTENSION_NAME;
70 static struct glx_display *glx_displays;
71
72 static /* const */ char *error_list[] = {
73 "GLXBadContext",
74 "GLXBadContextState",
75 "GLXBadDrawable",
76 "GLXBadPixmap",
77 "GLXBadContextTag",
78 "GLXBadCurrentWindow",
79 "GLXBadRenderRequest",
80 "GLXBadLargeRequest",
81 "GLXUnsupportedPrivateRequest",
82 "GLXBadFBConfig",
83 "GLXBadPbuffer",
84 "GLXBadCurrentDrawable",
85 "GLXBadWindow",
86 };
87
88 #ifdef GLX_USE_APPLEGL
89 static char *__glXErrorString(Display *dpy, int code, XExtCodes *codes,
90 char *buf, int n);
91 #endif
92
93 static
94 XEXT_GENERATE_ERROR_STRING(__glXErrorString, __glXExtensionName,
95 __GLX_NUMBER_ERRORS, error_list)
96
97 /*
98 * GLX events are a bit funky. We don't stuff the X event code into
99 * our user exposed (via XNextEvent) structure. Instead we use the GLX
100 * private event code namespace (and hope it doesn't conflict). Clients
101 * have to know that bit 15 in the event type field means they're getting
102 * a GLX event, and then handle the various sub-event types there, rather
103 * than simply checking the event code and handling it directly.
104 */
105
106 static Bool
107 __glXWireToEvent(Display *dpy, XEvent *event, xEvent *wire)
108 {
109 struct glx_display *glx_dpy = __glXInitialize(dpy);
110
111 if (glx_dpy == NULL)
112 return False;
113
114 switch ((wire->u.u.type & 0x7f) - glx_dpy->codes->first_event) {
115 case GLX_PbufferClobber:
116 {
117 GLXPbufferClobberEvent *aevent = (GLXPbufferClobberEvent *)event;
118 xGLXPbufferClobberEvent *awire = (xGLXPbufferClobberEvent *)wire;
119 aevent->event_type = awire->type;
120 aevent->serial = awire->sequenceNumber;
121 aevent->event_type = awire->event_type;
122 aevent->draw_type = awire->draw_type;
123 aevent->drawable = awire->drawable;
124 aevent->buffer_mask = awire->buffer_mask;
125 aevent->aux_buffer = awire->aux_buffer;
126 aevent->x = awire->x;
127 aevent->y = awire->y;
128 aevent->width = awire->width;
129 aevent->height = awire->height;
130 aevent->count = awire->count;
131 return True;
132 }
133 case GLX_BufferSwapComplete:
134 {
135 GLXBufferSwapComplete *aevent = (GLXBufferSwapComplete *)event;
136 xGLXBufferSwapComplete *awire = (xGLXBufferSwapComplete *)wire;
137 aevent->event_type = awire->event_type;
138 aevent->drawable = awire->drawable;
139 aevent->ust = ((CARD64)awire->ust_hi << 32) | awire->ust_lo;
140 aevent->msc = ((CARD64)awire->msc_hi << 32) | awire->msc_lo;
141 aevent->sbc = ((CARD64)awire->sbc_hi << 32) | awire->sbc_lo;
142 return True;
143 }
144 default:
145 /* client doesn't support server event */
146 break;
147 }
148
149 return False;
150 }
151
152 /* We don't actually support this. It doesn't make sense for clients to
153 * send each other GLX events.
154 */
155 static Status
156 __glXEventToWire(Display *dpy, XEvent *event, xEvent *wire)
157 {
158 struct glx_display *glx_dpy = __glXInitialize(dpy);
159
160 if (glx_dpy == NULL)
161 return False;
162
163 switch (event->type) {
164 case GLX_DAMAGED:
165 break;
166 case GLX_SAVED:
167 break;
168 case GLX_EXCHANGE_COMPLETE_INTEL:
169 break;
170 case GLX_COPY_COMPLETE_INTEL:
171 break;
172 case GLX_FLIP_COMPLETE_INTEL:
173 break;
174 default:
175 /* client doesn't support server event */
176 break;
177 }
178
179 return Success;
180 }
181
182 /************************************************************************/
183 /*
184 ** Free the per screen configs data as well as the array of
185 ** __glXScreenConfigs.
186 */
187 static void
188 FreeScreenConfigs(struct glx_display * priv)
189 {
190 struct glx_screen *psc;
191 GLint i, screens;
192
193 /* Free screen configuration information */
194 screens = ScreenCount(priv->dpy);
195 for (i = 0; i < screens; i++) {
196 psc = priv->screens[i];
197 glx_screen_cleanup(psc);
198
199 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
200 if (psc->driScreen) {
201 psc->driScreen->destroyScreen(psc);
202 } else {
203 Xfree(psc);
204 }
205 #else
206 Xfree(psc);
207 #endif
208 }
209 XFree((char *) priv->screens);
210 priv->screens = NULL;
211 }
212
213 static void
214 glx_display_free(struct glx_display *priv)
215 {
216 struct glx_context *gc;
217
218 gc = __glXGetCurrentContext();
219 if (priv->dpy == gc->currentDpy) {
220 gc->vtable->destroy(gc);
221 __glXSetCurrentContextNull();
222 }
223
224 FreeScreenConfigs(priv);
225 if (priv->serverGLXvendor)
226 Xfree((char *) priv->serverGLXvendor);
227 if (priv->serverGLXversion)
228 Xfree((char *) priv->serverGLXversion);
229
230 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
231 __glxHashDestroy(priv->drawHash);
232
233 /* Free the direct rendering per display data */
234 if (priv->driswDisplay)
235 (*priv->driswDisplay->destroyDisplay) (priv->driswDisplay);
236 priv->driswDisplay = NULL;
237
238 if (priv->driDisplay)
239 (*priv->driDisplay->destroyDisplay) (priv->driDisplay);
240 priv->driDisplay = NULL;
241
242 if (priv->dri2Display)
243 (*priv->dri2Display->destroyDisplay) (priv->dri2Display);
244 priv->dri2Display = NULL;
245 #endif
246
247 Xfree((char *) priv);
248 }
249
250 static int
251 __glXCloseDisplay(Display * dpy, XExtCodes * codes)
252 {
253 struct glx_display *priv, **prev;
254
255 _XLockMutex(_Xglobal_lock);
256 prev = &glx_displays;
257 for (priv = glx_displays; priv; prev = &priv->next, priv = priv->next) {
258 if (priv->dpy == dpy) {
259 (*prev) = priv->next;
260 break;
261 }
262 }
263 _XUnlockMutex(_Xglobal_lock);
264
265 glx_display_free(priv);
266
267 return 1;
268 }
269
270 /*
271 ** Query the version of the GLX extension. This procedure works even if
272 ** the client extension is not completely set up.
273 */
274 static Bool
275 QueryVersion(Display * dpy, int opcode, int *major, int *minor)
276 {
277 #ifdef USE_XCB
278 xcb_connection_t *c = XGetXCBConnection(dpy);
279 xcb_glx_query_version_reply_t *reply = xcb_glx_query_version_reply(c,
280 xcb_glx_query_version
281 (c,
282 GLX_MAJOR_VERSION,
283 GLX_MINOR_VERSION),
284 NULL);
285
286 if (reply->major_version != GLX_MAJOR_VERSION) {
287 free(reply);
288 return GL_FALSE;
289 }
290 *major = reply->major_version;
291 *minor = min(reply->minor_version, GLX_MINOR_VERSION);
292 free(reply);
293 return GL_TRUE;
294 #else
295 xGLXQueryVersionReq *req;
296 xGLXQueryVersionReply reply;
297
298 /* Send the glXQueryVersion request */
299 LockDisplay(dpy);
300 GetReq(GLXQueryVersion, req);
301 req->reqType = opcode;
302 req->glxCode = X_GLXQueryVersion;
303 req->majorVersion = GLX_MAJOR_VERSION;
304 req->minorVersion = GLX_MINOR_VERSION;
305 _XReply(dpy, (xReply *) & reply, 0, False);
306 UnlockDisplay(dpy);
307 SyncHandle();
308
309 if (reply.majorVersion != GLX_MAJOR_VERSION) {
310 /*
311 ** The server does not support the same major release as this
312 ** client.
313 */
314 return GL_FALSE;
315 }
316 *major = reply.majorVersion;
317 *minor = min(reply.minorVersion, GLX_MINOR_VERSION);
318 return GL_TRUE;
319 #endif /* USE_XCB */
320 }
321
322 /*
323 * We don't want to enable this GLX_OML_swap_method in glxext.h,
324 * because we can't support it. The X server writes it out though,
325 * so we should handle it somehow, to avoid false warnings.
326 */
327 enum {
328 IGNORE_GLX_SWAP_METHOD_OML = 0x8060
329 };
330
331
332 static GLint
333 convert_from_x_visual_type(int visualType)
334 {
335 static const int glx_visual_types[] = {
336 GLX_STATIC_GRAY, GLX_GRAY_SCALE,
337 GLX_STATIC_COLOR, GLX_PSEUDO_COLOR,
338 GLX_TRUE_COLOR, GLX_DIRECT_COLOR
339 };
340
341 if (visualType < ARRAY_SIZE(glx_visual_types))
342 return glx_visual_types[visualType];
343
344 return GLX_NONE;
345 }
346
347 /*
348 * getVisualConfigs uses the !tagged_only path.
349 * getFBConfigs uses the tagged_only path.
350 */
351 _X_HIDDEN void
352 __glXInitializeVisualConfigFromTags(struct glx_config * config, int count,
353 const INT32 * bp, Bool tagged_only,
354 Bool fbconfig_style_tags)
355 {
356 int i;
357
358 if (!tagged_only) {
359 /* Copy in the first set of properties */
360 config->visualID = *bp++;
361
362 config->visualType = convert_from_x_visual_type(*bp++);
363
364 config->rgbMode = *bp++;
365
366 config->redBits = *bp++;
367 config->greenBits = *bp++;
368 config->blueBits = *bp++;
369 config->alphaBits = *bp++;
370 config->accumRedBits = *bp++;
371 config->accumGreenBits = *bp++;
372 config->accumBlueBits = *bp++;
373 config->accumAlphaBits = *bp++;
374
375 config->doubleBufferMode = *bp++;
376 config->stereoMode = *bp++;
377
378 config->rgbBits = *bp++;
379 config->depthBits = *bp++;
380 config->stencilBits = *bp++;
381 config->numAuxBuffers = *bp++;
382 config->level = *bp++;
383
384 #ifdef GLX_USE_APPLEGL
385 /* AppleSGLX supports pixmap and pbuffers with all config. */
386 config->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
387 /* Unfortunately this can create an ABI compatibility problem. */
388 count -= 18;
389 #else
390 count -= __GLX_MIN_CONFIG_PROPS;
391 #endif
392 }
393
394 /*
395 ** Additional properties may be in a list at the end
396 ** of the reply. They are in pairs of property type
397 ** and property value.
398 */
399
400 #define FETCH_OR_SET(tag) \
401 config-> tag = ( fbconfig_style_tags ) ? *bp++ : 1
402
403 for (i = 0; i < count; i += 2) {
404 long int tag = *bp++;
405
406 switch (tag) {
407 case GLX_RGBA:
408 FETCH_OR_SET(rgbMode);
409 break;
410 case GLX_BUFFER_SIZE:
411 config->rgbBits = *bp++;
412 break;
413 case GLX_LEVEL:
414 config->level = *bp++;
415 break;
416 case GLX_DOUBLEBUFFER:
417 FETCH_OR_SET(doubleBufferMode);
418 break;
419 case GLX_STEREO:
420 FETCH_OR_SET(stereoMode);
421 break;
422 case GLX_AUX_BUFFERS:
423 config->numAuxBuffers = *bp++;
424 break;
425 case GLX_RED_SIZE:
426 config->redBits = *bp++;
427 break;
428 case GLX_GREEN_SIZE:
429 config->greenBits = *bp++;
430 break;
431 case GLX_BLUE_SIZE:
432 config->blueBits = *bp++;
433 break;
434 case GLX_ALPHA_SIZE:
435 config->alphaBits = *bp++;
436 break;
437 case GLX_DEPTH_SIZE:
438 config->depthBits = *bp++;
439 break;
440 case GLX_STENCIL_SIZE:
441 config->stencilBits = *bp++;
442 break;
443 case GLX_ACCUM_RED_SIZE:
444 config->accumRedBits = *bp++;
445 break;
446 case GLX_ACCUM_GREEN_SIZE:
447 config->accumGreenBits = *bp++;
448 break;
449 case GLX_ACCUM_BLUE_SIZE:
450 config->accumBlueBits = *bp++;
451 break;
452 case GLX_ACCUM_ALPHA_SIZE:
453 config->accumAlphaBits = *bp++;
454 break;
455 case GLX_VISUAL_CAVEAT_EXT:
456 config->visualRating = *bp++;
457 break;
458 case GLX_X_VISUAL_TYPE:
459 config->visualType = *bp++;
460 break;
461 case GLX_TRANSPARENT_TYPE:
462 config->transparentPixel = *bp++;
463 break;
464 case GLX_TRANSPARENT_INDEX_VALUE:
465 config->transparentIndex = *bp++;
466 break;
467 case GLX_TRANSPARENT_RED_VALUE:
468 config->transparentRed = *bp++;
469 break;
470 case GLX_TRANSPARENT_GREEN_VALUE:
471 config->transparentGreen = *bp++;
472 break;
473 case GLX_TRANSPARENT_BLUE_VALUE:
474 config->transparentBlue = *bp++;
475 break;
476 case GLX_TRANSPARENT_ALPHA_VALUE:
477 config->transparentAlpha = *bp++;
478 break;
479 case GLX_VISUAL_ID:
480 config->visualID = *bp++;
481 break;
482 case GLX_DRAWABLE_TYPE:
483 config->drawableType = *bp++;
484 #ifdef GLX_USE_APPLEGL
485 /* AppleSGLX supports pixmap and pbuffers with all config. */
486 config->drawableType |= GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
487 #endif
488 break;
489 case GLX_RENDER_TYPE:
490 config->renderType = *bp++;
491 break;
492 case GLX_X_RENDERABLE:
493 config->xRenderable = *bp++;
494 break;
495 case GLX_FBCONFIG_ID:
496 config->fbconfigID = *bp++;
497 break;
498 case GLX_MAX_PBUFFER_WIDTH:
499 config->maxPbufferWidth = *bp++;
500 break;
501 case GLX_MAX_PBUFFER_HEIGHT:
502 config->maxPbufferHeight = *bp++;
503 break;
504 case GLX_MAX_PBUFFER_PIXELS:
505 config->maxPbufferPixels = *bp++;
506 break;
507 #ifndef GLX_USE_APPLEGL
508 case GLX_OPTIMAL_PBUFFER_WIDTH_SGIX:
509 config->optimalPbufferWidth = *bp++;
510 break;
511 case GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX:
512 config->optimalPbufferHeight = *bp++;
513 break;
514 case GLX_VISUAL_SELECT_GROUP_SGIX:
515 config->visualSelectGroup = *bp++;
516 break;
517 case GLX_SWAP_METHOD_OML:
518 config->swapMethod = *bp++;
519 break;
520 #endif
521 case GLX_SAMPLE_BUFFERS_SGIS:
522 config->sampleBuffers = *bp++;
523 break;
524 case GLX_SAMPLES_SGIS:
525 config->samples = *bp++;
526 break;
527 #ifdef GLX_USE_APPLEGL
528 case IGNORE_GLX_SWAP_METHOD_OML:
529 /* We ignore this tag. See the comment above this function. */
530 ++bp;
531 break;
532 #else
533 case GLX_BIND_TO_TEXTURE_RGB_EXT:
534 config->bindToTextureRgb = *bp++;
535 break;
536 case GLX_BIND_TO_TEXTURE_RGBA_EXT:
537 config->bindToTextureRgba = *bp++;
538 break;
539 case GLX_BIND_TO_MIPMAP_TEXTURE_EXT:
540 config->bindToMipmapTexture = *bp++;
541 break;
542 case GLX_BIND_TO_TEXTURE_TARGETS_EXT:
543 config->bindToTextureTargets = *bp++;
544 break;
545 case GLX_Y_INVERTED_EXT:
546 config->yInverted = *bp++;
547 break;
548 #endif
549 case GLX_USE_GL:
550 if (fbconfig_style_tags)
551 bp++;
552 break;
553 case None:
554 i = count;
555 break;
556 default:
557 if(getenv("LIBGL_DIAGNOSTIC")) {
558 long int tagvalue = *bp++;
559 fprintf(stderr, "WARNING: unknown GLX tag from server: "
560 "tag 0x%lx value 0x%lx\n", tag, tagvalue);
561 } else {
562 /* Ignore the unrecognized tag's value */
563 bp++;
564 }
565 break;
566 }
567 }
568
569 config->renderType =
570 (config->rgbMode) ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
571 }
572
573 static struct glx_config *
574 createConfigsFromProperties(Display * dpy, int nvisuals, int nprops,
575 int screen, GLboolean tagged_only)
576 {
577 INT32 buf[__GLX_TOTAL_CONFIG], *props;
578 unsigned prop_size;
579 struct glx_config *modes, *m;
580 int i;
581
582 if (nprops == 0)
583 return NULL;
584
585 /* FIXME: Is the __GLX_MIN_CONFIG_PROPS test correct for FBconfigs? */
586
587 /* Check number of properties */
588 if (nprops < __GLX_MIN_CONFIG_PROPS || nprops > __GLX_MAX_CONFIG_PROPS)
589 return NULL;
590
591 /* Allocate memory for our config structure */
592 modes = glx_config_create_list(nvisuals);
593 if (!modes)
594 return NULL;
595
596 prop_size = nprops * __GLX_SIZE_INT32;
597 if (prop_size <= sizeof(buf))
598 props = buf;
599 else
600 props = Xmalloc(prop_size);
601
602 /* Read each config structure and convert it into our format */
603 m = modes;
604 for (i = 0; i < nvisuals; i++) {
605 _XRead(dpy, (char *) props, prop_size);
606 #ifdef GLX_USE_APPLEGL
607 /* Older X servers don't send this so we default it here. */
608 m->drawableType = GLX_WINDOW_BIT;
609 #else
610 /*
611 * The XQuartz 2.3.2.1 X server doesn't set this properly, so
612 * set the proper bits here.
613 * AppleSGLX supports windows, pixmaps, and pbuffers with all config.
614 */
615 m->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
616 #endif
617 __glXInitializeVisualConfigFromTags(m, nprops, props,
618 tagged_only, GL_TRUE);
619 m->screen = screen;
620 m = m->next;
621 }
622
623 if (props != buf)
624 Xfree(props);
625
626 return modes;
627 }
628
629 static GLboolean
630 getVisualConfigs(struct glx_screen *psc,
631 struct glx_display *priv, int screen)
632 {
633 xGLXGetVisualConfigsReq *req;
634 xGLXGetVisualConfigsReply reply;
635 Display *dpy = priv->dpy;
636
637 LockDisplay(dpy);
638
639 psc->visuals = NULL;
640 GetReq(GLXGetVisualConfigs, req);
641 req->reqType = priv->majorOpcode;
642 req->glxCode = X_GLXGetVisualConfigs;
643 req->screen = screen;
644
645 if (!_XReply(dpy, (xReply *) & reply, 0, False))
646 goto out;
647
648 psc->visuals = createConfigsFromProperties(dpy,
649 reply.numVisuals,
650 reply.numProps,
651 screen, GL_FALSE);
652
653 out:
654 UnlockDisplay(dpy);
655 return psc->visuals != NULL;
656 }
657
658 static GLboolean
659 getFBConfigs(struct glx_screen *psc, struct glx_display *priv, int screen)
660 {
661 xGLXGetFBConfigsReq *fb_req;
662 xGLXGetFBConfigsSGIXReq *sgi_req;
663 xGLXVendorPrivateWithReplyReq *vpreq;
664 xGLXGetFBConfigsReply reply;
665 Display *dpy = priv->dpy;
666
667 psc->serverGLXexts =
668 __glXQueryServerString(dpy, priv->majorOpcode, screen, GLX_EXTENSIONS);
669
670 LockDisplay(dpy);
671
672 psc->configs = NULL;
673 if (atof(priv->serverGLXversion) >= 1.3) {
674 GetReq(GLXGetFBConfigs, fb_req);
675 fb_req->reqType = priv->majorOpcode;
676 fb_req->glxCode = X_GLXGetFBConfigs;
677 fb_req->screen = screen;
678 }
679 else if (strstr(psc->serverGLXexts, "GLX_SGIX_fbconfig") != NULL) {
680 GetReqExtra(GLXVendorPrivateWithReply,
681 sz_xGLXGetFBConfigsSGIXReq -
682 sz_xGLXVendorPrivateWithReplyReq, vpreq);
683 sgi_req = (xGLXGetFBConfigsSGIXReq *) vpreq;
684 sgi_req->reqType = priv->majorOpcode;
685 sgi_req->glxCode = X_GLXVendorPrivateWithReply;
686 sgi_req->vendorCode = X_GLXvop_GetFBConfigsSGIX;
687 sgi_req->screen = screen;
688 }
689 else
690 goto out;
691
692 if (!_XReply(dpy, (xReply *) & reply, 0, False))
693 goto out;
694
695 psc->configs = createConfigsFromProperties(dpy,
696 reply.numFBConfigs,
697 reply.numAttribs * 2,
698 screen, GL_TRUE);
699
700 out:
701 UnlockDisplay(dpy);
702 return psc->configs != NULL;
703 }
704
705 _X_HIDDEN Bool
706 glx_screen_init(struct glx_screen *psc,
707 int screen, struct glx_display * priv)
708 {
709 /* Initialize per screen dynamic client GLX extensions */
710 psc->ext_list_first_time = GL_TRUE;
711 psc->scr = screen;
712 psc->dpy = priv->dpy;
713 psc->display = priv;
714
715 getVisualConfigs(psc, priv, screen);
716 getFBConfigs(psc, priv, screen);
717
718 return GL_TRUE;
719 }
720
721 _X_HIDDEN void
722 glx_screen_cleanup(struct glx_screen *psc)
723 {
724 if (psc->configs) {
725 glx_config_destroy_list(psc->configs);
726 if (psc->effectiveGLXexts)
727 Xfree(psc->effectiveGLXexts);
728 psc->configs = NULL; /* NOTE: just for paranoia */
729 }
730 if (psc->visuals) {
731 glx_config_destroy_list(psc->visuals);
732 psc->visuals = NULL; /* NOTE: just for paranoia */
733 }
734 Xfree((char *) psc->serverGLXexts);
735 }
736
737 /*
738 ** Allocate the memory for the per screen configs for each screen.
739 ** If that works then fetch the per screen configs data.
740 */
741 static Bool
742 AllocAndFetchScreenConfigs(Display * dpy, struct glx_display * priv)
743 {
744 struct glx_screen *psc;
745 GLint i, screens;
746
747 /*
748 ** First allocate memory for the array of per screen configs.
749 */
750 screens = ScreenCount(dpy);
751 priv->screens = Xmalloc(screens * sizeof *priv->screens);
752 if (!priv->screens)
753 return GL_FALSE;
754
755 priv->serverGLXversion =
756 __glXQueryServerString(dpy, priv->majorOpcode, 0, GLX_VERSION);
757 if (priv->serverGLXversion == NULL) {
758 FreeScreenConfigs(priv);
759 return GL_FALSE;
760 }
761
762 for (i = 0; i < screens; i++, psc++) {
763 psc = NULL;
764 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
765 if (priv->dri2Display)
766 psc = (*priv->dri2Display->createScreen) (i, priv);
767 if (psc == NULL && priv->driDisplay)
768 psc = (*priv->driDisplay->createScreen) (i, priv);
769 if (psc == NULL && priv->driswDisplay)
770 psc = (*priv->driswDisplay->createScreen) (i, priv);
771 #endif
772 #if defined(GLX_USE_APPLEGL)
773 if (psc == NULL && priv->appleglDisplay)
774 psc = (*priv->appleglDisplay->createScreen) (i, priv);
775 #endif
776 if (psc == NULL)
777 psc = indirect_create_screen(i, priv);
778 priv->screens[i] = psc;
779 }
780 SyncHandle();
781 return GL_TRUE;
782 }
783
784 /*
785 ** Initialize the client side extension code.
786 */
787 _X_HIDDEN struct glx_display *
788 __glXInitialize(Display * dpy)
789 {
790 struct glx_display *dpyPriv, *d;
791 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
792 Bool glx_direct, glx_accel;
793 #endif
794 int i;
795
796 _XLockMutex(_Xglobal_lock);
797
798 for (dpyPriv = glx_displays; dpyPriv; dpyPriv = dpyPriv->next) {
799 if (dpyPriv->dpy == dpy) {
800 _XUnlockMutex(_Xglobal_lock);
801 return dpyPriv;
802 }
803 }
804
805 /* Drop the lock while we create the display private. */
806 _XUnlockMutex(_Xglobal_lock);
807
808 dpyPriv = Xcalloc(1, sizeof *dpyPriv);
809 if (!dpyPriv)
810 return NULL;
811
812 dpyPriv->codes = XInitExtension(dpy, __glXExtensionName);
813 if (!dpyPriv->codes) {
814 Xfree(dpyPriv);
815 _XUnlockMutex(_Xglobal_lock);
816 return NULL;
817 }
818
819 dpyPriv->dpy = dpy;
820 dpyPriv->majorOpcode = dpyPriv->codes->major_opcode;
821 dpyPriv->serverGLXvendor = 0x0;
822 dpyPriv->serverGLXversion = 0x0;
823
824 /* See if the versions are compatible */
825 if (!QueryVersion(dpy, dpyPriv->majorOpcode,
826 &dpyPriv->majorVersion, &dpyPriv->minorVersion)) {
827 Xfree(dpyPriv);
828 _XUnlockMutex(_Xglobal_lock);
829 return NULL;
830 }
831
832 for (i = 0; i < __GLX_NUMBER_EVENTS; i++) {
833 XESetWireToEvent(dpy, dpyPriv->codes->first_event + i, __glXWireToEvent);
834 XESetEventToWire(dpy, dpyPriv->codes->first_event + i, __glXEventToWire);
835 }
836
837 XESetCloseDisplay(dpy, dpyPriv->codes->extension, __glXCloseDisplay);
838 XESetErrorString (dpy, dpyPriv->codes->extension,__glXErrorString);
839
840 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
841 glx_direct = (getenv("LIBGL_ALWAYS_INDIRECT") == NULL);
842 glx_accel = (getenv("LIBGL_ALWAYS_SOFTWARE") == NULL);
843
844 dpyPriv->drawHash = __glxHashCreate();
845
846 /*
847 ** Initialize the direct rendering per display data and functions.
848 ** Note: This _must_ be done before calling any other DRI routines
849 ** (e.g., those called in AllocAndFetchScreenConfigs).
850 */
851 if (glx_direct && glx_accel) {
852 dpyPriv->dri2Display = dri2CreateDisplay(dpy);
853 dpyPriv->driDisplay = driCreateDisplay(dpy);
854 }
855 if (glx_direct)
856 dpyPriv->driswDisplay = driswCreateDisplay(dpy);
857 #endif
858
859 #ifdef GLX_USE_APPLEGL
860 if (!applegl_create_display(dpyPriv)) {
861 Xfree(dpyPriv);
862 return NULL;
863 }
864 #endif
865 if (!AllocAndFetchScreenConfigs(dpy, dpyPriv)) {
866 Xfree(dpyPriv);
867 return NULL;
868 }
869
870 if (dpyPriv->majorVersion == 1 && dpyPriv->minorVersion >= 1)
871 __glXClientInfo(dpy, dpyPriv->majorOpcode);
872
873 /* Grab the lock again and add the dispay private, unless somebody
874 * beat us to initializing on this display in the meantime. */
875 _XLockMutex(_Xglobal_lock);
876
877 for (d = glx_displays; d; d = d->next) {
878 if (d->dpy == dpy) {
879 _XUnlockMutex(_Xglobal_lock);
880 glx_display_free(dpyPriv);
881 return d;
882 }
883 }
884
885 dpyPriv->next = glx_displays;
886 glx_displays = dpyPriv;
887
888 _XUnlockMutex(_Xglobal_lock);
889
890 return dpyPriv;
891 }
892
893 /*
894 ** Setup for sending a GLX command on dpy. Make sure the extension is
895 ** initialized. Try to avoid calling __glXInitialize as its kinda slow.
896 */
897 _X_HIDDEN CARD8
898 __glXSetupForCommand(Display * dpy)
899 {
900 struct glx_context *gc;
901 struct glx_display *priv;
902
903 /* If this thread has a current context, flush its rendering commands */
904 gc = __glXGetCurrentContext();
905 if (gc->currentDpy) {
906 /* Flush rendering buffer of the current context, if any */
907 (void) __glXFlushRenderBuffer(gc, gc->pc);
908
909 if (gc->currentDpy == dpy) {
910 /* Use opcode from gc because its right */
911 return gc->majorOpcode;
912 }
913 else {
914 /*
915 ** Have to get info about argument dpy because it might be to
916 ** a different server
917 */
918 }
919 }
920
921 /* Forced to lookup extension via the slow initialize route */
922 priv = __glXInitialize(dpy);
923 if (!priv) {
924 return 0;
925 }
926 return priv->majorOpcode;
927 }
928
929 /**
930 * Flush the drawing command transport buffer.
931 *
932 * \param ctx Context whose transport buffer is to be flushed.
933 * \param pc Pointer to first unused buffer location.
934 *
935 * \todo
936 * Modify this function to use \c ctx->pc instead of the explicit
937 * \c pc parameter.
938 */
939 _X_HIDDEN GLubyte *
940 __glXFlushRenderBuffer(struct glx_context * ctx, GLubyte * pc)
941 {
942 Display *const dpy = ctx->currentDpy;
943 #ifdef USE_XCB
944 xcb_connection_t *c = XGetXCBConnection(dpy);
945 #else
946 xGLXRenderReq *req;
947 #endif /* USE_XCB */
948 const GLint size = pc - ctx->buf;
949
950 if ((dpy != NULL) && (size > 0)) {
951 #ifdef USE_XCB
952 xcb_glx_render(c, ctx->currentContextTag, size,
953 (const uint8_t *) ctx->buf);
954 #else
955 /* Send the entire buffer as an X request */
956 LockDisplay(dpy);
957 GetReq(GLXRender, req);
958 req->reqType = ctx->majorOpcode;
959 req->glxCode = X_GLXRender;
960 req->contextTag = ctx->currentContextTag;
961 req->length += (size + 3) >> 2;
962 _XSend(dpy, (char *) ctx->buf, size);
963 UnlockDisplay(dpy);
964 SyncHandle();
965 #endif
966 }
967
968 /* Reset pointer and return it */
969 ctx->pc = ctx->buf;
970 return ctx->pc;
971 }
972
973
974 /**
975 * Send a portion of a GLXRenderLarge command to the server. The advantage of
976 * this function over \c __glXSendLargeCommand is that callers can use the
977 * data buffer in the GLX context and may be able to avoid allocating an
978 * extra buffer. The disadvantage is the clients will have to do more
979 * GLX protocol work (i.e., calculating \c totalRequests, etc.).
980 *
981 * \sa __glXSendLargeCommand
982 *
983 * \param gc GLX context
984 * \param requestNumber Which part of the whole command is this? The first
985 * request is 1.
986 * \param totalRequests How many requests will there be?
987 * \param data Command data.
988 * \param dataLen Size, in bytes, of the command data.
989 */
990 _X_HIDDEN void
991 __glXSendLargeChunk(struct glx_context * gc, GLint requestNumber,
992 GLint totalRequests, const GLvoid * data, GLint dataLen)
993 {
994 Display *dpy = gc->currentDpy;
995 #ifdef USE_XCB
996 xcb_connection_t *c = XGetXCBConnection(dpy);
997 xcb_glx_render_large(c, gc->currentContextTag, requestNumber,
998 totalRequests, dataLen, data);
999 #else
1000 xGLXRenderLargeReq *req;
1001
1002 if (requestNumber == 1) {
1003 LockDisplay(dpy);
1004 }
1005
1006 GetReq(GLXRenderLarge, req);
1007 req->reqType = gc->majorOpcode;
1008 req->glxCode = X_GLXRenderLarge;
1009 req->contextTag = gc->currentContextTag;
1010 req->length += (dataLen + 3) >> 2;
1011 req->requestNumber = requestNumber;
1012 req->requestTotal = totalRequests;
1013 req->dataBytes = dataLen;
1014 Data(dpy, data, dataLen);
1015
1016 if (requestNumber == totalRequests) {
1017 UnlockDisplay(dpy);
1018 SyncHandle();
1019 }
1020 #endif /* USE_XCB */
1021 }
1022
1023
1024 /**
1025 * Send a command that is too large for the GLXRender protocol request.
1026 *
1027 * Send a large command, one that is too large for some reason to
1028 * send using the GLXRender protocol request. One reason to send
1029 * a large command is to avoid copying the data.
1030 *
1031 * \param ctx GLX context
1032 * \param header Header data.
1033 * \param headerLen Size, in bytes, of the header data. It is assumed that
1034 * the header data will always be small enough to fit in
1035 * a single X protocol packet.
1036 * \param data Command data.
1037 * \param dataLen Size, in bytes, of the command data.
1038 */
1039 _X_HIDDEN void
1040 __glXSendLargeCommand(struct glx_context * ctx,
1041 const GLvoid * header, GLint headerLen,
1042 const GLvoid * data, GLint dataLen)
1043 {
1044 GLint maxSize;
1045 GLint totalRequests, requestNumber;
1046
1047 /*
1048 ** Calculate the maximum amount of data can be stuffed into a single
1049 ** packet. sz_xGLXRenderReq is added because bufSize is the maximum
1050 ** packet size minus sz_xGLXRenderReq.
1051 */
1052 maxSize = (ctx->bufSize + sz_xGLXRenderReq) - sz_xGLXRenderLargeReq;
1053 totalRequests = 1 + (dataLen / maxSize);
1054 if (dataLen % maxSize)
1055 totalRequests++;
1056
1057 /*
1058 ** Send all of the command, except the large array, as one request.
1059 */
1060 assert(headerLen <= maxSize);
1061 __glXSendLargeChunk(ctx, 1, totalRequests, header, headerLen);
1062
1063 /*
1064 ** Send enough requests until the whole array is sent.
1065 */
1066 for (requestNumber = 2; requestNumber <= (totalRequests - 1);
1067 requestNumber++) {
1068 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, maxSize);
1069 data = (const GLvoid *) (((const GLubyte *) data) + maxSize);
1070 dataLen -= maxSize;
1071 assert(dataLen > 0);
1072 }
1073
1074 assert(dataLen <= maxSize);
1075 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, dataLen);
1076 }
1077
1078 /************************************************************************/
1079
1080 #ifdef DEBUG
1081 _X_HIDDEN void
1082 __glXDumpDrawBuffer(struct glx_context * ctx)
1083 {
1084 GLubyte *p = ctx->buf;
1085 GLubyte *end = ctx->pc;
1086 GLushort opcode, length;
1087
1088 while (p < end) {
1089 /* Fetch opcode */
1090 opcode = *((GLushort *) p);
1091 length = *((GLushort *) (p + 2));
1092 printf("%2x: %5d: ", opcode, length);
1093 length -= 4;
1094 p += 4;
1095 while (length > 0) {
1096 printf("%08x ", *((unsigned *) p));
1097 p += 4;
1098 length -= 4;
1099 }
1100 printf("\n");
1101 }
1102 }
1103 #endif