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