OSDN Git Service

glx: Fix indirect screen initialization
[android-x86/external-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 #include <X11/extensions/dri2proto.h>
45 #ifdef GLX_USE_APPLEGL
46 #include "apple_glx.h"
47 #include "apple_visual.h"
48 #endif
49 #include "glxextensions.h"
50 #include "glcontextmodes.h"
51
52 #ifdef USE_XCB
53 #include <X11/Xlib-xcb.h>
54 #include <xcb/xcb.h>
55 #include <xcb/glx.h>
56 #endif
57
58
59 #ifdef DEBUG
60 void __glXDumpDrawBuffer(__GLXcontext * 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 __GLXdisplayPrivate *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 };
89
90 #ifdef GLX_USE_APPLEGL
91 static char *__glXErrorString(Display *dpy, int code, XExtCodes *codes, 
92                               char *buf, int n);
93 #endif
94
95 static
96 XEXT_GENERATE_ERROR_STRING(__glXErrorString, __glXExtensionName,
97                            __GLX_NUMBER_ERRORS, error_list)
98
99 static int
100 __glXCloseDisplay(Display * dpy, XExtCodes * codes);
101 static Bool
102 __glXWireToEvent(Display *dpy, XEvent *event, xEvent *wire);
103 static Status
104 __glXEventToWire(Display *dpy, XEvent *event, xEvent *wire);
105
106 /*
107  * GLX events are a bit funky.  We don't stuff the X event code into
108  * our user exposed (via XNextEvent) structure.  Instead we use the GLX
109  * private event code namespace (and hope it doesn't conflict).  Clients
110  * have to know that bit 15 in the event type field means they're getting
111  * a GLX event, and then handle the various sub-event types there, rather
112  * than simply checking the event code and handling it directly.
113  */
114
115 static Bool
116 __glXWireToEvent(Display *dpy, XEvent *event, xEvent *wire)
117 {
118    __GLXdisplayPrivate *glx_dpy = __glXInitialize(dpy);
119
120    if (glx_dpy == NULL)
121       return False;
122
123    switch ((wire->u.u.type & 0x7f) - glx_dpy->codes->first_event) {
124    case GLX_PbufferClobber:
125    {
126       GLXPbufferClobberEvent *aevent = (GLXPbufferClobberEvent *)event;
127       xGLXPbufferClobberEvent *awire = (xGLXPbufferClobberEvent *)wire;
128       aevent->event_type = awire->type;
129       aevent->serial = awire->sequenceNumber;
130       aevent->event_type = awire->event_type;
131       aevent->draw_type = awire->draw_type;
132       aevent->drawable = awire->drawable;
133       aevent->buffer_mask = awire->buffer_mask;
134       aevent->aux_buffer = awire->aux_buffer;
135       aevent->x = awire->x;
136       aevent->y = awire->y;
137       aevent->width = awire->width;
138       aevent->height = awire->height;
139       aevent->count = awire->count;
140       return True;
141    }
142    /* No easy symbol to test for this, as GLX_BufferSwapComplete is
143     * defined in the local glx.h header, but the
144     * xGLXBufferSwapComplete typedef is only available in new versions
145     * of the external glxproto.h header, which doesn't have any
146     * testable versioning define.
147     *
148     * I'll use the related DRI2 define, in the hope that we won't
149     * receive these events unless we know how to ask for them:
150     */
151 #ifdef X_DRI2SwapBuffers
152    case GLX_BufferSwapComplete:
153    {
154       GLXBufferSwapComplete *aevent = (GLXBufferSwapComplete *)event;
155       xGLXBufferSwapComplete *awire = (xGLXBufferSwapComplete *)wire;
156       aevent->event_type = awire->event_type;
157       aevent->drawable = awire->drawable;
158       aevent->ust = ((CARD64)awire->ust_hi << 32) | awire->ust_lo;
159       aevent->msc = ((CARD64)awire->msc_hi << 32) | awire->msc_lo;
160       aevent->sbc = ((CARD64)awire->sbc_hi << 32) | awire->sbc_lo;
161       return True;
162    }
163 #endif
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    __GLXdisplayPrivate *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(__GLXdisplayPrivate * priv)
209 {
210    __GLXscreenConfigs *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->screenConfigs[i];
217       if (psc->configs) {
218          _gl_context_modes_destroy(psc->configs);
219          if (psc->effectiveGLXexts)
220             Xfree(psc->effectiveGLXexts);
221          psc->configs = NULL;   /* NOTE: just for paranoia */
222       }
223       if (psc->visuals) {
224          _gl_context_modes_destroy(psc->visuals);
225          psc->visuals = NULL;   /* NOTE: just for paranoia */
226       }
227       Xfree((char *) psc->serverGLXexts);
228
229 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
230       if (psc->driScreen) {
231          psc->driScreen->destroyScreen(psc);
232          psc->driScreen = NULL;
233       } else {
234          Xfree(psc);
235       }
236 #else
237       Xfree(psc);
238 #endif
239    }
240    XFree((char *) priv->screenConfigs);
241    priv->screenConfigs = NULL;
242 }
243
244 /*
245 ** Release the private memory referred to in a display private
246 ** structure.  The caller will free the extension structure.
247 */
248 static int
249 __glXCloseDisplay(Display * dpy, XExtCodes * codes)
250 {
251    __GLXdisplayPrivate *priv, **prev;
252    GLXContext gc;
253
254    _XLockMutex(_Xglobal_lock);
255    prev = &glx_displays;
256    for (priv = glx_displays; priv; prev = &priv->next, priv = priv->next) {
257       if (priv->dpy == dpy) {
258          (*prev)->next = priv->next;
259          break;
260       }
261    }
262    _XUnlockMutex(_Xglobal_lock);
263
264    gc = __glXGetCurrentContext();
265    if (dpy == gc->currentDpy) {
266       gc->vtable->destroy(gc);
267       __glXSetCurrentContextNull();
268    }
269
270    FreeScreenConfigs(priv);
271    if (priv->serverGLXvendor)
272       Xfree((char *) priv->serverGLXvendor);
273    if (priv->serverGLXversion)
274       Xfree((char *) priv->serverGLXversion);
275
276    __glxHashDestroy(priv->drawHash);
277
278 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
279    /* Free the direct rendering per display data */
280    if (priv->driswDisplay)
281       (*priv->driswDisplay->destroyDisplay) (priv->driswDisplay);
282    priv->driswDisplay = NULL;
283
284    if (priv->driDisplay)
285       (*priv->driDisplay->destroyDisplay) (priv->driDisplay);
286    priv->driDisplay = NULL;
287
288    if (priv->dri2Display)
289       (*priv->dri2Display->destroyDisplay) (priv->dri2Display);
290    priv->dri2Display = NULL;
291 #endif
292
293    Xfree((char *) priv);
294
295    return 1;
296 }
297
298 /*
299 ** Query the version of the GLX extension.  This procedure works even if
300 ** the client extension is not completely set up.
301 */
302 static Bool
303 QueryVersion(Display * dpy, int opcode, int *major, int *minor)
304 {
305 #ifdef USE_XCB
306    xcb_connection_t *c = XGetXCBConnection(dpy);
307    xcb_glx_query_version_reply_t *reply = xcb_glx_query_version_reply(c,
308                                                                       xcb_glx_query_version
309                                                                       (c,
310                                                                        GLX_MAJOR_VERSION,
311                                                                        GLX_MINOR_VERSION),
312                                                                       NULL);
313
314    if (reply->major_version != GLX_MAJOR_VERSION) {
315       free(reply);
316       return GL_FALSE;
317    }
318    *major = reply->major_version;
319    *minor = min(reply->minor_version, GLX_MINOR_VERSION);
320    free(reply);
321    return GL_TRUE;
322 #else
323    xGLXQueryVersionReq *req;
324    xGLXQueryVersionReply reply;
325
326    /* Send the glXQueryVersion request */
327    LockDisplay(dpy);
328    GetReq(GLXQueryVersion, req);
329    req->reqType = opcode;
330    req->glxCode = X_GLXQueryVersion;
331    req->majorVersion = GLX_MAJOR_VERSION;
332    req->minorVersion = GLX_MINOR_VERSION;
333    _XReply(dpy, (xReply *) & reply, 0, False);
334    UnlockDisplay(dpy);
335    SyncHandle();
336
337    if (reply.majorVersion != GLX_MAJOR_VERSION) {
338       /*
339        ** The server does not support the same major release as this
340        ** client.
341        */
342       return GL_FALSE;
343    }
344    *major = reply.majorVersion;
345    *minor = min(reply.minorVersion, GLX_MINOR_VERSION);
346    return GL_TRUE;
347 #endif /* USE_XCB */
348 }
349
350 /* 
351  * We don't want to enable this GLX_OML_swap_method in glxext.h, 
352  * because we can't support it.  The X server writes it out though,
353  * so we should handle it somehow, to avoid false warnings.
354  */
355 enum {
356     IGNORE_GLX_SWAP_METHOD_OML = 0x8060
357 };
358
359
360 /*
361  * getVisualConfigs uses the !tagged_only path.
362  * getFBConfigs uses the tagged_only path.
363  */
364 _X_HIDDEN void
365 __glXInitializeVisualConfigFromTags(__GLcontextModes * config, int count,
366                                     const INT32 * bp, Bool tagged_only,
367                                     Bool fbconfig_style_tags)
368 {
369    int i;
370
371    if (!tagged_only) {
372       /* Copy in the first set of properties */
373       config->visualID = *bp++;
374
375       config->visualType = _gl_convert_from_x_visual_type(*bp++);
376
377       config->rgbMode = *bp++;
378
379       config->redBits = *bp++;
380       config->greenBits = *bp++;
381       config->blueBits = *bp++;
382       config->alphaBits = *bp++;
383       config->accumRedBits = *bp++;
384       config->accumGreenBits = *bp++;
385       config->accumBlueBits = *bp++;
386       config->accumAlphaBits = *bp++;
387
388       config->doubleBufferMode = *bp++;
389       config->stereoMode = *bp++;
390
391       config->rgbBits = *bp++;
392       config->depthBits = *bp++;
393       config->stencilBits = *bp++;
394       config->numAuxBuffers = *bp++;
395       config->level = *bp++;
396
397 #ifdef GLX_USE_APPLEGL
398        /* AppleSGLX supports pixmap and pbuffers with all config. */
399        config->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
400        /* Unfortunately this can create an ABI compatibility problem. */
401        count -= 18;
402 #else
403       count -= __GLX_MIN_CONFIG_PROPS;
404 #endif
405    }
406
407    /*
408     ** Additional properties may be in a list at the end
409     ** of the reply.  They are in pairs of property type
410     ** and property value.
411     */
412
413 #define FETCH_OR_SET(tag) \
414     config-> tag = ( fbconfig_style_tags ) ? *bp++ : 1
415
416    for (i = 0; i < count; i += 2) {
417       long int tag = *bp++;
418       
419       switch (tag) {
420       case GLX_RGBA:
421          FETCH_OR_SET(rgbMode);
422          break;
423       case GLX_BUFFER_SIZE:
424          config->rgbBits = *bp++;
425          break;
426       case GLX_LEVEL:
427          config->level = *bp++;
428          break;
429       case GLX_DOUBLEBUFFER:
430          FETCH_OR_SET(doubleBufferMode);
431          break;
432       case GLX_STEREO:
433          FETCH_OR_SET(stereoMode);
434          break;
435       case GLX_AUX_BUFFERS:
436          config->numAuxBuffers = *bp++;
437          break;
438       case GLX_RED_SIZE:
439          config->redBits = *bp++;
440          break;
441       case GLX_GREEN_SIZE:
442          config->greenBits = *bp++;
443          break;
444       case GLX_BLUE_SIZE:
445          config->blueBits = *bp++;
446          break;
447       case GLX_ALPHA_SIZE:
448          config->alphaBits = *bp++;
449          break;
450       case GLX_DEPTH_SIZE:
451          config->depthBits = *bp++;
452          break;
453       case GLX_STENCIL_SIZE:
454          config->stencilBits = *bp++;
455          break;
456       case GLX_ACCUM_RED_SIZE:
457          config->accumRedBits = *bp++;
458          break;
459       case GLX_ACCUM_GREEN_SIZE:
460          config->accumGreenBits = *bp++;
461          break;
462       case GLX_ACCUM_BLUE_SIZE:
463          config->accumBlueBits = *bp++;
464          break;
465       case GLX_ACCUM_ALPHA_SIZE:
466          config->accumAlphaBits = *bp++;
467          break;
468       case GLX_VISUAL_CAVEAT_EXT:
469          config->visualRating = *bp++;
470          break;
471       case GLX_X_VISUAL_TYPE:
472          config->visualType = *bp++;
473          break;
474       case GLX_TRANSPARENT_TYPE:
475          config->transparentPixel = *bp++;
476          break;
477       case GLX_TRANSPARENT_INDEX_VALUE:
478          config->transparentIndex = *bp++;
479          break;
480       case GLX_TRANSPARENT_RED_VALUE:
481          config->transparentRed = *bp++;
482          break;
483       case GLX_TRANSPARENT_GREEN_VALUE:
484          config->transparentGreen = *bp++;
485          break;
486       case GLX_TRANSPARENT_BLUE_VALUE:
487          config->transparentBlue = *bp++;
488          break;
489       case GLX_TRANSPARENT_ALPHA_VALUE:
490          config->transparentAlpha = *bp++;
491          break;
492       case GLX_VISUAL_ID:
493          config->visualID = *bp++;
494          break;
495       case GLX_DRAWABLE_TYPE:
496          config->drawableType = *bp++;
497 #ifdef GLX_USE_APPLEGL
498          /* AppleSGLX supports pixmap and pbuffers with all config. */
499          config->drawableType |= GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;              
500 #endif
501          break;
502       case GLX_RENDER_TYPE:
503          config->renderType = *bp++;
504          break;
505       case GLX_X_RENDERABLE:
506          config->xRenderable = *bp++;
507          break;
508       case GLX_FBCONFIG_ID:
509          config->fbconfigID = *bp++;
510          break;
511       case GLX_MAX_PBUFFER_WIDTH:
512          config->maxPbufferWidth = *bp++;
513          break;
514       case GLX_MAX_PBUFFER_HEIGHT:
515          config->maxPbufferHeight = *bp++;
516          break;
517       case GLX_MAX_PBUFFER_PIXELS:
518          config->maxPbufferPixels = *bp++;
519          break;
520 #ifndef GLX_USE_APPLEGL
521       case GLX_OPTIMAL_PBUFFER_WIDTH_SGIX:
522          config->optimalPbufferWidth = *bp++;
523          break;
524       case GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX:
525          config->optimalPbufferHeight = *bp++;
526          break;
527       case GLX_VISUAL_SELECT_GROUP_SGIX:
528          config->visualSelectGroup = *bp++;
529          break;
530       case GLX_SWAP_METHOD_OML:
531          config->swapMethod = *bp++;
532          break;
533 #endif
534       case GLX_SAMPLE_BUFFERS_SGIS:
535          config->sampleBuffers = *bp++;
536          break;
537       case GLX_SAMPLES_SGIS:
538          config->samples = *bp++;
539          break;
540 #ifdef GLX_USE_APPLEGL
541       case IGNORE_GLX_SWAP_METHOD_OML:
542          /* We ignore this tag.  See the comment above this function. */
543          ++bp;
544          break;
545 #else
546       case GLX_BIND_TO_TEXTURE_RGB_EXT:
547          config->bindToTextureRgb = *bp++;
548          break;
549       case GLX_BIND_TO_TEXTURE_RGBA_EXT:
550          config->bindToTextureRgba = *bp++;
551          break;
552       case GLX_BIND_TO_MIPMAP_TEXTURE_EXT:
553          config->bindToMipmapTexture = *bp++;
554          break;
555       case GLX_BIND_TO_TEXTURE_TARGETS_EXT:
556          config->bindToTextureTargets = *bp++;
557          break;
558       case GLX_Y_INVERTED_EXT:
559          config->yInverted = *bp++;
560          break;
561 #endif
562       case GLX_USE_GL:
563          if (fbconfig_style_tags)
564             bp++;
565          break;
566       case None:
567          i = count;
568          break;
569       default:
570          if(getenv("LIBGL_DIAGNOSTIC")) {
571              long int tagvalue = *bp++;
572              fprintf(stderr, "WARNING: unknown GLX tag from server: "
573                      "tag 0x%lx value 0x%lx\n", tag, tagvalue);
574          } else {
575              /* Ignore the unrecognized tag's value */
576              bp++;
577          }
578          break;
579       }
580    }
581
582    config->renderType =
583       (config->rgbMode) ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
584
585    config->haveAccumBuffer = ((config->accumRedBits +
586                                config->accumGreenBits +
587                                config->accumBlueBits +
588                                config->accumAlphaBits) > 0);
589    config->haveDepthBuffer = (config->depthBits > 0);
590    config->haveStencilBuffer = (config->stencilBits > 0);
591 }
592
593 static __GLcontextModes *
594 createConfigsFromProperties(Display * dpy, int nvisuals, int nprops,
595                             int screen, GLboolean tagged_only)
596 {
597    INT32 buf[__GLX_TOTAL_CONFIG], *props;
598    unsigned prop_size;
599    __GLcontextModes *modes, *m;
600    int i;
601
602    if (nprops == 0)
603       return NULL;
604
605    /* FIXME: Is the __GLX_MIN_CONFIG_PROPS test correct for FBconfigs? */
606
607    /* Check number of properties */
608    if (nprops < __GLX_MIN_CONFIG_PROPS || nprops > __GLX_MAX_CONFIG_PROPS)
609       return NULL;
610
611    /* Allocate memory for our config structure */
612    modes = _gl_context_modes_create(nvisuals, sizeof(__GLcontextModes));
613    if (!modes)
614       return NULL;
615
616    prop_size = nprops * __GLX_SIZE_INT32;
617    if (prop_size <= sizeof(buf))
618       props = buf;
619    else
620       props = Xmalloc(prop_size);
621
622    /* Read each config structure and convert it into our format */
623    m = modes;
624    for (i = 0; i < nvisuals; i++) {
625       _XRead(dpy, (char *) props, prop_size);
626 #ifdef GLX_USE_APPLEGL
627        /* Older X servers don't send this so we default it here. */
628       m->drawableType = GLX_WINDOW_BIT;
629 #else
630       /* 
631        * The XQuartz 2.3.2.1 X server doesn't set this properly, so
632        * set the proper bits here.
633        * AppleSGLX supports windows, pixmaps, and pbuffers with all config.
634        */
635       m->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
636 #endif
637        __glXInitializeVisualConfigFromTags(m, nprops, props,
638                                           tagged_only, GL_TRUE);
639       m->screen = screen;
640       m = m->next;
641    }
642
643    if (props != buf)
644       Xfree(props);
645
646    return modes;
647 }
648
649 static GLboolean
650 getVisualConfigs(__GLXscreenConfigs *psc,
651                  __GLXdisplayPrivate *priv, int screen)
652 {
653    xGLXGetVisualConfigsReq *req;
654    xGLXGetVisualConfigsReply reply;
655    Display *dpy = priv->dpy;
656
657    LockDisplay(dpy);
658
659    psc->visuals = NULL;
660    GetReq(GLXGetVisualConfigs, req);
661    req->reqType = priv->majorOpcode;
662    req->glxCode = X_GLXGetVisualConfigs;
663    req->screen = screen;
664
665    if (!_XReply(dpy, (xReply *) & reply, 0, False))
666       goto out;
667
668    psc->visuals = createConfigsFromProperties(dpy,
669                                               reply.numVisuals,
670                                               reply.numProps,
671                                               screen, GL_FALSE);
672
673  out:
674    UnlockDisplay(dpy);
675    return psc->visuals != NULL;
676 }
677
678 static GLboolean
679 getFBConfigs(__GLXscreenConfigs *psc, __GLXdisplayPrivate *priv, int screen)
680 {
681    xGLXGetFBConfigsReq *fb_req;
682    xGLXGetFBConfigsSGIXReq *sgi_req;
683    xGLXVendorPrivateWithReplyReq *vpreq;
684    xGLXGetFBConfigsReply reply;
685    Display *dpy = priv->dpy;
686
687    psc->serverGLXexts =
688       __glXQueryServerString(dpy, priv->majorOpcode, screen, GLX_EXTENSIONS);
689
690    LockDisplay(dpy);
691
692    psc->configs = NULL;
693    if (atof(priv->serverGLXversion) >= 1.3) {
694       GetReq(GLXGetFBConfigs, fb_req);
695       fb_req->reqType = priv->majorOpcode;
696       fb_req->glxCode = X_GLXGetFBConfigs;
697       fb_req->screen = screen;
698    }
699    else if (strstr(psc->serverGLXexts, "GLX_SGIX_fbconfig") != NULL) {
700       GetReqExtra(GLXVendorPrivateWithReply,
701                   sz_xGLXGetFBConfigsSGIXReq +
702                   sz_xGLXVendorPrivateWithReplyReq, vpreq);
703       sgi_req = (xGLXGetFBConfigsSGIXReq *) vpreq;
704       sgi_req->reqType = priv->majorOpcode;
705       sgi_req->glxCode = X_GLXVendorPrivateWithReply;
706       sgi_req->vendorCode = X_GLXvop_GetFBConfigsSGIX;
707       sgi_req->screen = screen;
708    }
709    else
710       goto out;
711
712    if (!_XReply(dpy, (xReply *) & reply, 0, False))
713       goto out;
714
715    psc->configs = createConfigsFromProperties(dpy,
716                                               reply.numFBConfigs,
717                                               reply.numAttribs * 2,
718                                               screen, GL_TRUE);
719
720  out:
721    UnlockDisplay(dpy);
722    return psc->configs != NULL;
723 }
724
725 _X_HIDDEN Bool
726 glx_screen_init(__GLXscreenConfigs *psc,
727                 int screen, __GLXdisplayPrivate * priv)
728 {
729    /* Initialize per screen dynamic client GLX extensions */
730    psc->ext_list_first_time = GL_TRUE;
731    psc->scr = screen;
732    psc->dpy = priv->dpy;
733    psc->display = priv;
734
735    getVisualConfigs(psc, priv, screen);
736    getFBConfigs(psc, priv, screen);
737
738    return GL_TRUE;
739 }
740
741 static __GLXscreenConfigs *
742 createIndirectScreen(int screen, __GLXdisplayPrivate * priv)
743 {
744    __GLXscreenConfigs *psc;
745
746    psc = Xmalloc(sizeof *psc);
747    if (psc == NULL)
748       return NULL;
749
750    memset(psc, 0, sizeof *psc);
751    glx_screen_init(psc, screen, priv);
752
753    return psc;
754 }
755
756 /*
757 ** Allocate the memory for the per screen configs for each screen.
758 ** If that works then fetch the per screen configs data.
759 */
760 static Bool
761 AllocAndFetchScreenConfigs(Display * dpy, __GLXdisplayPrivate * priv)
762 {
763    __GLXscreenConfigs *psc;
764    GLint i, screens;
765
766    /*
767     ** First allocate memory for the array of per screen configs.
768     */
769    screens = ScreenCount(dpy);
770    priv->screenConfigs = Xmalloc(screens * sizeof *priv->screenConfigs);
771    if (!priv->screenConfigs)
772       return GL_FALSE;
773
774    priv->serverGLXversion =
775       __glXQueryServerString(dpy, priv->majorOpcode, 0, GLX_VERSION);
776    if (priv->serverGLXversion == NULL) {
777       FreeScreenConfigs(priv);
778       return GL_FALSE;
779    }
780
781    for (i = 0; i < screens; i++, psc++) {
782       psc = NULL;
783 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
784       if (priv->dri2Display)
785          psc = (*priv->dri2Display->createScreen) (i, priv);
786       if (psc == NULL && priv->driDisplay)
787          psc = (*priv->driDisplay->createScreen) (i, priv);
788       if (psc == NULL && priv->driswDisplay)
789          psc = (*priv->driswDisplay->createScreen) (i, priv);
790 #endif
791       if (psc == NULL)
792          psc = createIndirectScreen (i, priv);
793       priv->screenConfigs[i] = psc;
794    }
795    SyncHandle();
796    return GL_TRUE;
797 }
798
799 /*
800 ** Initialize the client side extension code.
801 */
802 _X_HIDDEN __GLXdisplayPrivate *
803 __glXInitialize(Display * dpy)
804 {
805    __GLXdisplayPrivate *dpyPriv;
806 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
807    Bool glx_direct, glx_accel;
808 #endif
809    int i;
810
811    _XLockMutex(_Xglobal_lock);
812
813    for (dpyPriv = glx_displays; dpyPriv; dpyPriv = dpyPriv->next) {
814       if (dpyPriv->dpy == dpy) {
815          _XUnlockMutex(_Xglobal_lock);
816          return dpyPriv;
817       }
818    }
819
820    dpyPriv = Xcalloc(1, sizeof *dpyPriv);
821    if (!dpyPriv)
822       return NULL;
823
824    dpyPriv->codes = XInitExtension(dpy, __glXExtensionName);
825    if (!dpyPriv->codes) {
826       Xfree(dpyPriv);
827       _XUnlockMutex(_Xglobal_lock);
828       return NULL;
829    }
830
831    dpyPriv->dpy = dpy;
832    dpyPriv->majorOpcode = dpyPriv->codes->major_opcode;
833    dpyPriv->serverGLXvendor = 0x0;
834    dpyPriv->serverGLXversion = 0x0;
835
836    /* See if the versions are compatible */
837    if (!QueryVersion(dpy, dpyPriv->majorOpcode,
838                      &dpyPriv->majorVersion, &dpyPriv->minorVersion)) {
839       Xfree(dpyPriv);
840       _XUnlockMutex(_Xglobal_lock);
841       return NULL;
842    }
843
844    for (i = 0; i < __GLX_NUMBER_EVENTS; i++) {
845       XESetWireToEvent(dpy, dpyPriv->codes->first_event + i, __glXWireToEvent);
846       XESetEventToWire(dpy, dpyPriv->codes->first_event + i, __glXEventToWire);
847    }
848
849    XESetCloseDisplay(dpy, dpyPriv->codes->extension, __glXCloseDisplay);
850    XESetErrorString (dpy, dpyPriv->codes->extension,__glXErrorString);
851
852 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
853    glx_direct = (getenv("LIBGL_ALWAYS_INDIRECT") == NULL);
854    glx_accel = (getenv("LIBGL_ALWAYS_SOFTWARE") == NULL);
855
856    dpyPriv->drawHash = __glxHashCreate();
857
858    /*
859     ** Initialize the direct rendering per display data and functions.
860     ** Note: This _must_ be done before calling any other DRI routines
861     ** (e.g., those called in AllocAndFetchScreenConfigs).
862     */
863    if (glx_direct && glx_accel) {
864       dpyPriv->dri2Display = dri2CreateDisplay(dpy);
865       dpyPriv->driDisplay = driCreateDisplay(dpy);
866    }
867    if (glx_direct)
868       dpyPriv->driswDisplay = driswCreateDisplay(dpy);
869 #endif
870
871 #ifdef GLX_USE_APPLEGL
872    if (apple_init_glx(dpy)) {
873       Xfree(dpyPriv);
874       return NULL;
875    }
876 #endif
877    if (!AllocAndFetchScreenConfigs(dpy, dpyPriv)) {
878       Xfree(dpyPriv);
879       return NULL;
880    }
881
882    if (dpyPriv->majorVersion == 1 && dpyPriv->minorVersion >= 1)
883       __glXClientInfo(dpy, dpyPriv->majorOpcode);
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    GLXContext gc;
901    __GLXdisplayPrivate *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(__GLXcontext * 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(__GLXcontext * 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(__GLXcontext * 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(__GLXcontext * 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