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