OSDN Git Service

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