glx: gcc 2.95 build fix (move declaration before code)
[mesa.git] / src / glx / x11 / glxcmds.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 glxcmds.c
33 * Client-side GLX interface.
34 */
35
36 #include "glxclient.h"
37 #include "glapi.h"
38 #include "glxextensions.h"
39 #include "glcontextmodes.h"
40
41 #ifdef GLX_DIRECT_RENDERING
42 #include <sys/time.h>
43 #include <X11/extensions/xf86vmode.h>
44 #include "xf86dri.h"
45 #endif
46
47 #if defined(USE_XCB)
48 #include <X11/Xlib-xcb.h>
49 #include <xcb/xcb.h>
50 #include <xcb/glx.h>
51 #endif
52
53 static const char __glXGLXClientVendorName[] = "SGI";
54 static const char __glXGLXClientVersion[] = "1.4";
55
56
57 /****************************************************************************/
58
59 #ifdef GLX_DIRECT_RENDERING
60
61 static Bool windowExistsFlag;
62 static int windowExistsErrorHandler(Display *dpy, XErrorEvent *xerr)
63 {
64 if (xerr->error_code == BadWindow) {
65 windowExistsFlag = GL_FALSE;
66 }
67 return 0;
68 }
69
70 /**
71 * Find drawables in the local hash that have been destroyed on the
72 * server.
73 *
74 * \param dpy Display to destroy drawables for
75 * \param screen Screen number to destroy drawables for
76 */
77 static void GarbageCollectDRIDrawables(Display *dpy, __GLXscreenConfigs *sc)
78 {
79 XID draw;
80 __GLXDRIdrawable *pdraw;
81 XWindowAttributes xwa;
82 int (*oldXErrorHandler)(Display *, XErrorEvent *);
83
84 /* Set no-op error handler so Xlib doesn't bail out if the windows
85 * has alreay been destroyed on the server. */
86 XSync(dpy, GL_FALSE);
87 oldXErrorHandler = XSetErrorHandler(windowExistsErrorHandler);
88
89 if (__glxHashFirst(sc->drawHash, &draw, (void *)&pdraw) == 1) {
90 do {
91 windowExistsFlag = GL_TRUE;
92 XGetWindowAttributes(dpy, draw, &xwa); /* dummy request */
93 if (!windowExistsFlag) {
94 /* Destroy the local drawable data, if the drawable no
95 longer exists in the Xserver */
96 (*pdraw->destroyDrawable)(pdraw);
97 __glxHashDelete(sc->drawHash, draw);
98 }
99 } while (__glxHashNext(sc->drawHash, &draw, (void *)&pdraw) == 1);
100 }
101
102 XSync(dpy, GL_FALSE);
103 XSetErrorHandler(oldXErrorHandler);
104 }
105
106 extern __GLXDRIdrawable *
107 GetGLXDRIDrawable(Display *dpy, GLXDrawable drawable, int * const scrn_num);
108
109 /**
110 * Get the __DRIdrawable for the drawable associated with a GLXContext
111 *
112 * \param dpy The display associated with \c drawable.
113 * \param drawable GLXDrawable whose __DRIdrawable part is to be retrieved.
114 * \param scrn_num If non-NULL, the drawables screen is stored there
115 * \returns A pointer to the context's __DRIdrawable on success, or NULL if
116 * the drawable is not associated with a direct-rendering context.
117 */
118 _X_HIDDEN __GLXDRIdrawable *
119 GetGLXDRIDrawable(Display *dpy, GLXDrawable drawable, int * const scrn_num)
120 {
121 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
122 __GLXDRIdrawable *pdraw;
123 const unsigned screen_count = ScreenCount(dpy);
124 unsigned i;
125 __GLXscreenConfigs *psc;
126
127 if (priv == NULL)
128 return NULL;
129
130 for (i = 0; i < screen_count; i++) {
131 psc = &priv->screenConfigs[i];
132 if (psc->drawHash == NULL)
133 continue;
134
135 if (__glxHashLookup(psc->drawHash, drawable, (void *) &pdraw) == 0) {
136 if (scrn_num != NULL)
137 *scrn_num = i;
138 return pdraw;
139 }
140 }
141
142 return NULL;
143 }
144
145 #endif
146
147
148 /**
149 * Get the GLX per-screen data structure associated with a GLX context.
150 *
151 * \param dpy Display for which the GLX per-screen information is to be
152 * retrieved.
153 * \param scrn Screen on \c dpy for which the GLX per-screen information is
154 * to be retrieved.
155 * \returns A pointer to the GLX per-screen data if \c dpy and \c scrn
156 * specify a valid GLX screen, or NULL otherwise.
157 *
158 * \todo Should this function validate that \c scrn is within the screen
159 * number range for \c dpy?
160 */
161
162 static __GLXscreenConfigs *
163 GetGLXScreenConfigs(Display *dpy, int scrn)
164 {
165 __GLXdisplayPrivate * const priv = __glXInitialize(dpy);
166
167 return (priv->screenConfigs != NULL) ? &priv->screenConfigs[scrn] : NULL;
168 }
169
170
171 static int
172 GetGLXPrivScreenConfig( Display *dpy, int scrn, __GLXdisplayPrivate ** ppriv,
173 __GLXscreenConfigs ** ppsc )
174 {
175 /* Initialize the extension, if needed . This has the added value
176 * of initializing/allocating the display private
177 */
178
179 if ( dpy == NULL ) {
180 return GLX_NO_EXTENSION;
181 }
182
183 *ppriv = __glXInitialize(dpy);
184 if ( *ppriv == NULL ) {
185 return GLX_NO_EXTENSION;
186 }
187
188 /* Check screen number to see if its valid */
189 if ((scrn < 0) || (scrn >= ScreenCount(dpy))) {
190 return GLX_BAD_SCREEN;
191 }
192
193 /* Check to see if the GL is supported on this screen */
194 *ppsc = &((*ppriv)->screenConfigs[scrn]);
195 if ( (*ppsc)->configs == NULL ) {
196 /* No support for GL on this screen regardless of visual */
197 return GLX_BAD_VISUAL;
198 }
199
200 return Success;
201 }
202
203
204 /**
205 * Determine if a \c GLXFBConfig supplied by the application is valid.
206 *
207 * \param dpy Application supplied \c Display pointer.
208 * \param config Application supplied \c GLXFBConfig.
209 *
210 * \returns If the \c GLXFBConfig is valid, the a pointer to the matching
211 * \c __GLcontextModes structure is returned. Otherwise, \c NULL
212 * is returned.
213 */
214 static __GLcontextModes *
215 ValidateGLXFBConfig( Display * dpy, GLXFBConfig config )
216 {
217 __GLXdisplayPrivate * const priv = __glXInitialize(dpy);
218 const unsigned num_screens = ScreenCount(dpy);
219 unsigned i;
220 const __GLcontextModes * modes;
221
222
223 if ( priv != NULL ) {
224 for ( i = 0 ; i < num_screens ; i++ ) {
225 for ( modes = priv->screenConfigs[i].configs
226 ; modes != NULL
227 ; modes = modes->next ) {
228 if ( modes == (__GLcontextModes *) config ) {
229 return (__GLcontextModes *) config;
230 }
231 }
232 }
233 }
234
235 return NULL;
236 }
237
238
239 /**
240 * \todo It should be possible to move the allocate of \c client_state_private
241 * later in the function for direct-rendering contexts. Direct-rendering
242 * contexts don't need to track client state, so they don't need that memory
243 * at all.
244 *
245 * \todo Eliminate \c __glXInitVertexArrayState. Replace it with a new
246 * function called \c __glXAllocateClientState that allocates the memory and
247 * does all the initialization (including the pixel pack / unpack).
248 */
249 static
250 GLXContext AllocateGLXContext( Display *dpy )
251 {
252 GLXContext gc;
253 int bufSize;
254 CARD8 opcode;
255 __GLXattribute *state;
256
257 if (!dpy)
258 return NULL;
259
260 opcode = __glXSetupForCommand(dpy);
261 if (!opcode) {
262 return NULL;
263 }
264
265 /* Allocate our context record */
266 gc = (GLXContext) Xmalloc(sizeof(struct __GLXcontextRec));
267 if (!gc) {
268 /* Out of memory */
269 return NULL;
270 }
271 memset(gc, 0, sizeof(struct __GLXcontextRec));
272
273 state = Xmalloc(sizeof(struct __GLXattributeRec));
274 if (state == NULL) {
275 /* Out of memory */
276 Xfree(gc);
277 return NULL;
278 }
279 gc->client_state_private = state;
280 memset(gc->client_state_private, 0, sizeof(struct __GLXattributeRec));
281 state->NoDrawArraysProtocol = (getenv("LIBGL_NO_DRAWARRAYS") != NULL);
282
283 /*
284 ** Create a temporary buffer to hold GLX rendering commands. The size
285 ** of the buffer is selected so that the maximum number of GLX rendering
286 ** commands can fit in a single X packet and still have room in the X
287 ** packet for the GLXRenderReq header.
288 */
289
290 bufSize = (XMaxRequestSize(dpy) * 4) - sz_xGLXRenderReq;
291 gc->buf = (GLubyte *) Xmalloc(bufSize);
292 if (!gc->buf) {
293 Xfree(gc->client_state_private);
294 Xfree(gc);
295 return NULL;
296 }
297 gc->bufSize = bufSize;
298
299 /* Fill in the new context */
300 gc->renderMode = GL_RENDER;
301
302 state->storePack.alignment = 4;
303 state->storeUnpack.alignment = 4;
304
305 gc->attributes.stackPointer = &gc->attributes.stack[0];
306
307 /*
308 ** PERFORMANCE NOTE: A mode dependent fill image can speed things up.
309 ** Other code uses the fastImageUnpack bit, but it is never set
310 ** to GL_TRUE.
311 */
312 gc->fastImageUnpack = GL_FALSE;
313 gc->fillImage = __glFillImage;
314 gc->pc = gc->buf;
315 gc->bufEnd = gc->buf + bufSize;
316 gc->isDirect = GL_FALSE;
317 if (__glXDebug) {
318 /*
319 ** Set limit register so that there will be one command per packet
320 */
321 gc->limit = gc->buf;
322 } else {
323 gc->limit = gc->buf + bufSize - __GLX_BUFFER_LIMIT_SIZE;
324 }
325 gc->createDpy = dpy;
326 gc->majorOpcode = opcode;
327
328 /*
329 ** Constrain the maximum drawing command size allowed to be
330 ** transfered using the X_GLXRender protocol request. First
331 ** constrain by a software limit, then constrain by the protocl
332 ** limit.
333 */
334 if (bufSize > __GLX_RENDER_CMD_SIZE_LIMIT) {
335 bufSize = __GLX_RENDER_CMD_SIZE_LIMIT;
336 }
337 if (bufSize > __GLX_MAX_RENDER_CMD_SIZE) {
338 bufSize = __GLX_MAX_RENDER_CMD_SIZE;
339 }
340 gc->maxSmallRenderCommandSize = bufSize;
341 return gc;
342 }
343
344
345 /**
346 * Create a new context. Exactly one of \c vis and \c fbconfig should be
347 * non-NULL.
348 *
349 * \param use_glx_1_3 For FBConfigs, should GLX 1.3 protocol or
350 * SGIX_fbconfig protocol be used?
351 * \param renderType For FBConfigs, what is the rendering type?
352 */
353
354 static GLXContext
355 CreateContext(Display *dpy, XVisualInfo *vis,
356 const __GLcontextModes * const fbconfig,
357 GLXContext shareList,
358 Bool allowDirect, GLXContextID contextID,
359 Bool use_glx_1_3, int renderType)
360 {
361 GLXContext gc;
362 #ifdef GLX_DIRECT_RENDERING
363 int screen = (fbconfig == NULL) ? vis->screen : fbconfig->screen;
364 __GLXscreenConfigs * const psc = GetGLXScreenConfigs(dpy, screen);
365 #endif
366
367 if ( dpy == NULL )
368 return NULL;
369
370 gc = AllocateGLXContext(dpy);
371 if (!gc)
372 return NULL;
373
374 if (None == contextID) {
375 if ( (vis == NULL) && (fbconfig == NULL) )
376 return NULL;
377
378 #ifdef GLX_DIRECT_RENDERING
379 if (allowDirect && psc->driScreen) {
380 const __GLcontextModes * mode;
381
382 if (fbconfig == NULL) {
383 mode = _gl_context_modes_find_visual(psc->visuals, vis->visualid);
384 if (mode == NULL) {
385 xError error;
386
387 error.errorCode = BadValue;
388 error.resourceID = vis->visualid;
389 error.sequenceNumber = dpy->request;
390 error.type = X_Error;
391 error.majorCode = gc->majorOpcode;
392 error.minorCode = X_GLXCreateContext;
393 _XError(dpy, &error);
394 return None;
395 }
396 }
397 else {
398 mode = fbconfig;
399 }
400
401 gc->driContext = psc->driScreen->createContext(psc, mode, gc,
402 shareList,
403 renderType);
404 if (gc->driContext != NULL) {
405 gc->screen = mode->screen;
406 gc->psc = psc;
407 gc->mode = mode;
408 gc->isDirect = GL_TRUE;
409 }
410 }
411 #endif
412
413 LockDisplay(dpy);
414 if ( fbconfig == NULL ) {
415 xGLXCreateContextReq *req;
416
417 /* Send the glXCreateContext request */
418 GetReq(GLXCreateContext,req);
419 req->reqType = gc->majorOpcode;
420 req->glxCode = X_GLXCreateContext;
421 req->context = gc->xid = XAllocID(dpy);
422 req->visual = vis->visualid;
423 req->screen = vis->screen;
424 req->shareList = shareList ? shareList->xid : None;
425 #ifdef GLX_DIRECT_RENDERING
426 req->isDirect = gc->driContext != NULL;
427 #else
428 req->isDirect = 0;
429 #endif
430 }
431 else if ( use_glx_1_3 ) {
432 xGLXCreateNewContextReq *req;
433
434 /* Send the glXCreateNewContext request */
435 GetReq(GLXCreateNewContext,req);
436 req->reqType = gc->majorOpcode;
437 req->glxCode = X_GLXCreateNewContext;
438 req->context = gc->xid = XAllocID(dpy);
439 req->fbconfig = fbconfig->fbconfigID;
440 req->screen = fbconfig->screen;
441 req->renderType = renderType;
442 req->shareList = shareList ? shareList->xid : None;
443 #ifdef GLX_DIRECT_RENDERING
444 req->isDirect = gc->driContext != NULL;
445 #else
446 req->isDirect = 0;
447 #endif
448 }
449 else {
450 xGLXVendorPrivateWithReplyReq *vpreq;
451 xGLXCreateContextWithConfigSGIXReq *req;
452
453 /* Send the glXCreateNewContext request */
454 GetReqExtra(GLXVendorPrivateWithReply,
455 sz_xGLXCreateContextWithConfigSGIXReq-sz_xGLXVendorPrivateWithReplyReq,vpreq);
456 req = (xGLXCreateContextWithConfigSGIXReq *)vpreq;
457 req->reqType = gc->majorOpcode;
458 req->glxCode = X_GLXVendorPrivateWithReply;
459 req->vendorCode = X_GLXvop_CreateContextWithConfigSGIX;
460 req->context = gc->xid = XAllocID(dpy);
461 req->fbconfig = fbconfig->fbconfigID;
462 req->screen = fbconfig->screen;
463 req->renderType = renderType;
464 req->shareList = shareList ? shareList->xid : None;
465 #ifdef GLX_DIRECT_RENDERING
466 req->isDirect = gc->driContext != NULL;
467 #else
468 req->isDirect = 0;
469 #endif
470 }
471
472 UnlockDisplay(dpy);
473 SyncHandle();
474 gc->imported = GL_FALSE;
475 }
476 else {
477 gc->xid = contextID;
478 gc->imported = GL_TRUE;
479 }
480
481 return gc;
482 }
483
484 PUBLIC GLXContext glXCreateContext(Display *dpy, XVisualInfo *vis,
485 GLXContext shareList, Bool allowDirect)
486 {
487 return CreateContext(dpy, vis, NULL, shareList, allowDirect, None,
488 False, 0);
489 }
490
491 _X_HIDDEN void __glXFreeContext(__GLXcontext *gc)
492 {
493 if (gc->vendor) XFree((char *) gc->vendor);
494 if (gc->renderer) XFree((char *) gc->renderer);
495 if (gc->version) XFree((char *) gc->version);
496 if (gc->extensions) XFree((char *) gc->extensions);
497 __glFreeAttributeState(gc);
498 XFree((char *) gc->buf);
499 Xfree((char *) gc->client_state_private);
500 XFree((char *) gc);
501
502 }
503
504 /*
505 ** Destroy the named context
506 */
507 static void
508 DestroyContext(Display *dpy, GLXContext gc)
509 {
510 xGLXDestroyContextReq *req;
511 GLXContextID xid;
512 CARD8 opcode;
513 GLboolean imported;
514
515 opcode = __glXSetupForCommand(dpy);
516 if (!opcode || !gc) {
517 return;
518 }
519
520 __glXLock();
521 xid = gc->xid;
522 imported = gc->imported;
523 gc->xid = None;
524
525 #ifdef GLX_DIRECT_RENDERING
526 /* Destroy the direct rendering context */
527 if (gc->driContext) {
528 (*gc->driContext->destroyContext)(gc->driContext, gc->psc, dpy);
529 gc->driContext = NULL;
530 GarbageCollectDRIDrawables(dpy, gc->psc);
531 }
532 #endif
533
534 __glXFreeVertexArrayState(gc);
535
536 if (gc->currentDpy) {
537 /* Have to free later cuz it's in use now */
538 __glXUnlock();
539 } else {
540 /* Destroy the handle if not current to anybody */
541 __glXUnlock();
542 __glXFreeContext(gc);
543 }
544
545 if (!imported) {
546 /*
547 ** This dpy also created the server side part of the context.
548 ** Send the glXDestroyContext request.
549 */
550 LockDisplay(dpy);
551 GetReq(GLXDestroyContext,req);
552 req->reqType = opcode;
553 req->glxCode = X_GLXDestroyContext;
554 req->context = xid;
555 UnlockDisplay(dpy);
556 SyncHandle();
557 }
558 }
559
560 PUBLIC void glXDestroyContext(Display *dpy, GLXContext gc)
561 {
562 DestroyContext(dpy, gc);
563 }
564
565 /*
566 ** Return the major and minor version #s for the GLX extension
567 */
568 PUBLIC Bool glXQueryVersion(Display *dpy, int *major, int *minor)
569 {
570 __GLXdisplayPrivate *priv;
571
572 /* Init the extension. This fetches the major and minor version. */
573 priv = __glXInitialize(dpy);
574 if (!priv) return GL_FALSE;
575
576 if (major) *major = priv->majorVersion;
577 if (minor) *minor = priv->minorVersion;
578 return GL_TRUE;
579 }
580
581 /*
582 ** Query the existance of the GLX extension
583 */
584 PUBLIC Bool glXQueryExtension(Display *dpy, int *errorBase, int *eventBase)
585 {
586 int major_op, erb, evb;
587 Bool rv;
588
589 rv = XQueryExtension(dpy, GLX_EXTENSION_NAME, &major_op, &evb, &erb);
590 if (rv) {
591 if (errorBase) *errorBase = erb;
592 if (eventBase) *eventBase = evb;
593 }
594 return rv;
595 }
596
597 /*
598 ** Put a barrier in the token stream that forces the GL to finish its
599 ** work before X can proceed.
600 */
601 PUBLIC void glXWaitGL(void)
602 {
603 xGLXWaitGLReq *req;
604 GLXContext gc = __glXGetCurrentContext();
605 Display *dpy = gc->currentDpy;
606
607 if (!dpy) return;
608
609 /* Flush any pending commands out */
610 __glXFlushRenderBuffer(gc, gc->pc);
611
612 #ifdef GLX_DIRECT_RENDERING
613 if (gc->driContext) {
614 /* This bit of ugliness unwraps the glFinish function */
615 #ifdef glFinish
616 #undef glFinish
617 #endif
618 glFinish();
619 return;
620 }
621 #endif
622
623 /* Send the glXWaitGL request */
624 LockDisplay(dpy);
625 GetReq(GLXWaitGL,req);
626 req->reqType = gc->majorOpcode;
627 req->glxCode = X_GLXWaitGL;
628 req->contextTag = gc->currentContextTag;
629 UnlockDisplay(dpy);
630 SyncHandle();
631 }
632
633 /*
634 ** Put a barrier in the token stream that forces X to finish its
635 ** work before GL can proceed.
636 */
637 PUBLIC void glXWaitX(void)
638 {
639 xGLXWaitXReq *req;
640 GLXContext gc = __glXGetCurrentContext();
641 Display *dpy = gc->currentDpy;
642
643 if (!dpy) return;
644
645 /* Flush any pending commands out */
646 __glXFlushRenderBuffer(gc, gc->pc);
647
648 #ifdef GLX_DIRECT_RENDERING
649 if (gc->driContext) {
650 XSync(dpy, False);
651 return;
652 }
653 #endif
654
655 /*
656 ** Send the glXWaitX request.
657 */
658 LockDisplay(dpy);
659 GetReq(GLXWaitX,req);
660 req->reqType = gc->majorOpcode;
661 req->glxCode = X_GLXWaitX;
662 req->contextTag = gc->currentContextTag;
663 UnlockDisplay(dpy);
664 SyncHandle();
665 }
666
667 PUBLIC void glXUseXFont(Font font, int first, int count, int listBase)
668 {
669 xGLXUseXFontReq *req;
670 GLXContext gc = __glXGetCurrentContext();
671 Display *dpy = gc->currentDpy;
672
673 if (!dpy) return;
674
675 /* Flush any pending commands out */
676 (void) __glXFlushRenderBuffer(gc, gc->pc);
677
678 #ifdef GLX_DIRECT_RENDERING
679 if (gc->driContext) {
680 DRI_glXUseXFont(font, first, count, listBase);
681 return;
682 }
683 #endif
684
685 /* Send the glXUseFont request */
686 LockDisplay(dpy);
687 GetReq(GLXUseXFont,req);
688 req->reqType = gc->majorOpcode;
689 req->glxCode = X_GLXUseXFont;
690 req->contextTag = gc->currentContextTag;
691 req->font = font;
692 req->first = first;
693 req->count = count;
694 req->listBase = listBase;
695 UnlockDisplay(dpy);
696 SyncHandle();
697 }
698
699 /************************************************************************/
700
701 /*
702 ** Copy the source context to the destination context using the
703 ** attribute "mask".
704 */
705 PUBLIC void glXCopyContext(Display *dpy, GLXContext source,
706 GLXContext dest, unsigned long mask)
707 {
708 xGLXCopyContextReq *req;
709 GLXContext gc = __glXGetCurrentContext();
710 GLXContextTag tag;
711 CARD8 opcode;
712
713 opcode = __glXSetupForCommand(dpy);
714 if (!opcode) {
715 return;
716 }
717
718 #ifdef GLX_DIRECT_RENDERING
719 if (gc->driContext) {
720 /* NOT_DONE: This does not work yet */
721 }
722 #endif
723
724 /*
725 ** If the source is the current context, send its tag so that the context
726 ** can be flushed before the copy.
727 */
728 if (source == gc && dpy == gc->currentDpy) {
729 tag = gc->currentContextTag;
730 } else {
731 tag = 0;
732 }
733
734 /* Send the glXCopyContext request */
735 LockDisplay(dpy);
736 GetReq(GLXCopyContext,req);
737 req->reqType = opcode;
738 req->glxCode = X_GLXCopyContext;
739 req->source = source ? source->xid : None;
740 req->dest = dest ? dest->xid : None;
741 req->mask = mask;
742 req->contextTag = tag;
743 UnlockDisplay(dpy);
744 SyncHandle();
745 }
746
747
748 /**
749 * Determine if a context uses direct rendering.
750 *
751 * \param dpy Display where the context was created.
752 * \param contextID ID of the context to be tested.
753 *
754 * \returns \c GL_TRUE if the context is direct rendering or not.
755 */
756 static Bool __glXIsDirect(Display *dpy, GLXContextID contextID)
757 {
758 #if !defined(USE_XCB)
759 xGLXIsDirectReq *req;
760 xGLXIsDirectReply reply;
761 #endif
762 CARD8 opcode;
763
764 opcode = __glXSetupForCommand(dpy);
765 if (!opcode) {
766 return GL_FALSE;
767 }
768
769 #ifdef USE_XCB
770 xcb_connection_t* c = XGetXCBConnection(dpy);
771 xcb_glx_is_direct_reply_t* reply =
772 xcb_glx_is_direct_reply(c,
773 xcb_glx_is_direct(c, contextID),
774 NULL);
775
776 const Bool is_direct = reply->is_direct ? True : False;
777 free(reply);
778
779 return is_direct;
780 #else
781 /* Send the glXIsDirect request */
782 LockDisplay(dpy);
783 GetReq(GLXIsDirect,req);
784 req->reqType = opcode;
785 req->glxCode = X_GLXIsDirect;
786 req->context = contextID;
787 _XReply(dpy, (xReply*) &reply, 0, False);
788 UnlockDisplay(dpy);
789 SyncHandle();
790
791 return reply.isDirect;
792 #endif /* USE_XCB */
793 }
794
795 /**
796 * \todo
797 * Shouldn't this function \b always return \c GL_FALSE when
798 * \c GLX_DIRECT_RENDERING is not defined? Do we really need to bother with
799 * the GLX protocol here at all?
800 */
801 PUBLIC Bool glXIsDirect(Display *dpy, GLXContext gc)
802 {
803 if (!gc) {
804 return GL_FALSE;
805 #ifdef GLX_DIRECT_RENDERING
806 } else if (gc->driContext) {
807 return GL_TRUE;
808 #endif
809 }
810 return __glXIsDirect(dpy, gc->xid);
811 }
812
813 PUBLIC GLXPixmap glXCreateGLXPixmap(Display *dpy, XVisualInfo *vis,
814 Pixmap pixmap)
815 {
816 xGLXCreateGLXPixmapReq *req;
817 GLXPixmap xid;
818 CARD8 opcode;
819
820 opcode = __glXSetupForCommand(dpy);
821 if (!opcode) {
822 return None;
823 }
824
825 /* Send the glXCreateGLXPixmap request */
826 LockDisplay(dpy);
827 GetReq(GLXCreateGLXPixmap,req);
828 req->reqType = opcode;
829 req->glxCode = X_GLXCreateGLXPixmap;
830 req->screen = vis->screen;
831 req->visual = vis->visualid;
832 req->pixmap = pixmap;
833 req->glxpixmap = xid = XAllocID(dpy);
834 UnlockDisplay(dpy);
835 SyncHandle();
836 return xid;
837 }
838
839 /*
840 ** Destroy the named pixmap
841 */
842 PUBLIC void glXDestroyGLXPixmap(Display *dpy, GLXPixmap glxpixmap)
843 {
844 xGLXDestroyGLXPixmapReq *req;
845 CARD8 opcode;
846
847 opcode = __glXSetupForCommand(dpy);
848 if (!opcode) {
849 return;
850 }
851
852 /* Send the glXDestroyGLXPixmap request */
853 LockDisplay(dpy);
854 GetReq(GLXDestroyGLXPixmap,req);
855 req->reqType = opcode;
856 req->glxCode = X_GLXDestroyGLXPixmap;
857 req->glxpixmap = glxpixmap;
858 UnlockDisplay(dpy);
859 SyncHandle();
860 }
861
862 PUBLIC void glXSwapBuffers(Display *dpy, GLXDrawable drawable)
863 {
864 GLXContext gc;
865 GLXContextTag tag;
866 CARD8 opcode;
867 #ifdef USE_XCB
868 xcb_connection_t *c;
869 #else
870 xGLXSwapBuffersReq *req;
871 #endif
872
873 #ifdef GLX_DIRECT_RENDERING
874 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, NULL);
875
876 if (pdraw != NULL) {
877 glFlush();
878 (*pdraw->psc->driScreen->swapBuffers)(pdraw);
879 return;
880 }
881 #endif
882
883 opcode = __glXSetupForCommand(dpy);
884 if (!opcode) {
885 return;
886 }
887
888 /*
889 ** The calling thread may or may not have a current context. If it
890 ** does, send the context tag so the server can do a flush.
891 */
892 gc = __glXGetCurrentContext();
893 if ((gc != NULL) && (dpy == gc->currentDpy) &&
894 ((drawable == gc->currentDrawable) || (drawable == gc->currentReadable)) ) {
895 tag = gc->currentContextTag;
896 } else {
897 tag = 0;
898 }
899
900 #ifdef USE_XCB
901 c = XGetXCBConnection(dpy);
902 xcb_glx_swap_buffers(c, tag, drawable);
903 xcb_flush(c);
904 #else
905 /* Send the glXSwapBuffers request */
906 LockDisplay(dpy);
907 GetReq(GLXSwapBuffers,req);
908 req->reqType = opcode;
909 req->glxCode = X_GLXSwapBuffers;
910 req->drawable = drawable;
911 req->contextTag = tag;
912 UnlockDisplay(dpy);
913 SyncHandle();
914 XFlush(dpy);
915 #endif /* USE_XCB */
916 }
917
918
919 /*
920 ** Return configuration information for the given display, screen and
921 ** visual combination.
922 */
923 PUBLIC int glXGetConfig(Display *dpy, XVisualInfo *vis, int attribute,
924 int *value_return)
925 {
926 __GLXdisplayPrivate *priv;
927 __GLXscreenConfigs *psc;
928 __GLcontextModes *modes;
929 int status;
930
931 status = GetGLXPrivScreenConfig( dpy, vis->screen, & priv, & psc );
932 if ( status == Success ) {
933 modes = _gl_context_modes_find_visual(psc->visuals, vis->visualid);
934
935 /* Lookup attribute after first finding a match on the visual */
936 if ( modes != NULL ) {
937 return _gl_get_context_mode_data( modes, attribute, value_return );
938 }
939
940 status = GLX_BAD_VISUAL;
941 }
942
943 /*
944 ** If we can't find the config for this visual, this visual is not
945 ** supported by the OpenGL implementation on the server.
946 */
947 if ( (status == GLX_BAD_VISUAL) && (attribute == GLX_USE_GL) ) {
948 *value_return = GL_FALSE;
949 status = Success;
950 }
951
952 return status;
953 }
954
955 /************************************************************************/
956
957 static void
958 init_fbconfig_for_chooser( __GLcontextModes * config,
959 GLboolean fbconfig_style_tags )
960 {
961 memset( config, 0, sizeof( __GLcontextModes ) );
962 config->visualID = (XID) GLX_DONT_CARE;
963 config->visualType = GLX_DONT_CARE;
964
965 /* glXChooseFBConfig specifies different defaults for these two than
966 * glXChooseVisual.
967 */
968 if ( fbconfig_style_tags ) {
969 config->rgbMode = GL_TRUE;
970 config->doubleBufferMode = GLX_DONT_CARE;
971 }
972
973 config->visualRating = GLX_DONT_CARE;
974 config->transparentPixel = GLX_NONE;
975 config->transparentRed = GLX_DONT_CARE;
976 config->transparentGreen = GLX_DONT_CARE;
977 config->transparentBlue = GLX_DONT_CARE;
978 config->transparentAlpha = GLX_DONT_CARE;
979 config->transparentIndex = GLX_DONT_CARE;
980
981 config->drawableType = GLX_WINDOW_BIT;
982 config->renderType = (config->rgbMode) ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
983 config->xRenderable = GLX_DONT_CARE;
984 config->fbconfigID = (GLXFBConfigID)(GLX_DONT_CARE);
985
986 config->swapMethod = GLX_DONT_CARE;
987 }
988
989 #define MATCH_DONT_CARE( param ) \
990 do { \
991 if ( (a-> param != GLX_DONT_CARE) \
992 && (a-> param != b-> param) ) { \
993 return False; \
994 } \
995 } while ( 0 )
996
997 #define MATCH_MINIMUM( param ) \
998 do { \
999 if ( (a-> param != GLX_DONT_CARE) \
1000 && (a-> param > b-> param) ) { \
1001 return False; \
1002 } \
1003 } while ( 0 )
1004
1005 #define MATCH_EXACT( param ) \
1006 do { \
1007 if ( a-> param != b-> param) { \
1008 return False; \
1009 } \
1010 } while ( 0 )
1011
1012 /**
1013 * Determine if two GLXFBConfigs are compatible.
1014 *
1015 * \param a Application specified config to test.
1016 * \param b Server specified config to test against \c a.
1017 */
1018 static Bool
1019 fbconfigs_compatible( const __GLcontextModes * const a,
1020 const __GLcontextModes * const b )
1021 {
1022 MATCH_DONT_CARE( doubleBufferMode );
1023 MATCH_DONT_CARE( visualType );
1024 MATCH_DONT_CARE( visualRating );
1025 MATCH_DONT_CARE( xRenderable );
1026 MATCH_DONT_CARE( fbconfigID );
1027 MATCH_DONT_CARE( swapMethod );
1028
1029 MATCH_MINIMUM( rgbBits );
1030 MATCH_MINIMUM( numAuxBuffers );
1031 MATCH_MINIMUM( redBits );
1032 MATCH_MINIMUM( greenBits );
1033 MATCH_MINIMUM( blueBits );
1034 MATCH_MINIMUM( alphaBits );
1035 MATCH_MINIMUM( depthBits );
1036 MATCH_MINIMUM( stencilBits );
1037 MATCH_MINIMUM( accumRedBits );
1038 MATCH_MINIMUM( accumGreenBits );
1039 MATCH_MINIMUM( accumBlueBits );
1040 MATCH_MINIMUM( accumAlphaBits );
1041 MATCH_MINIMUM( sampleBuffers );
1042 MATCH_MINIMUM( maxPbufferWidth );
1043 MATCH_MINIMUM( maxPbufferHeight );
1044 MATCH_MINIMUM( maxPbufferPixels );
1045 MATCH_MINIMUM( samples );
1046
1047 MATCH_DONT_CARE( stereoMode );
1048 MATCH_EXACT( level );
1049
1050 if ( ((a->drawableType & b->drawableType) == 0)
1051 || ((a->renderType & b->renderType) == 0) ) {
1052 return False;
1053 }
1054
1055
1056 /* There is a bug in a few of the XFree86 DDX drivers. They contain
1057 * visuals with a "transparent type" of 0 when they really mean GLX_NONE.
1058 * Technically speaking, it is a bug in the DDX driver, but there is
1059 * enough of an installed base to work around the problem here. In any
1060 * case, 0 is not a valid value of the transparent type, so we'll treat 0
1061 * from the app as GLX_DONT_CARE. We'll consider GLX_NONE from the app and
1062 * 0 from the server to be a match to maintain backward compatibility with
1063 * the (broken) drivers.
1064 */
1065
1066 if ( a->transparentPixel != GLX_DONT_CARE
1067 && a->transparentPixel != 0 ) {
1068 if ( a->transparentPixel == GLX_NONE ) {
1069 if ( b->transparentPixel != GLX_NONE && b->transparentPixel != 0 )
1070 return False;
1071 } else {
1072 MATCH_EXACT( transparentPixel );
1073 }
1074
1075 switch ( a->transparentPixel ) {
1076 case GLX_TRANSPARENT_RGB:
1077 MATCH_DONT_CARE( transparentRed );
1078 MATCH_DONT_CARE( transparentGreen );
1079 MATCH_DONT_CARE( transparentBlue );
1080 MATCH_DONT_CARE( transparentAlpha );
1081 break;
1082
1083 case GLX_TRANSPARENT_INDEX:
1084 MATCH_DONT_CARE( transparentIndex );
1085 break;
1086
1087 default:
1088 break;
1089 }
1090 }
1091
1092 return True;
1093 }
1094
1095
1096 /* There's some trickly language in the GLX spec about how this is supposed
1097 * to work. Basically, if a given component size is either not specified
1098 * or the requested size is zero, it is supposed to act like PERFER_SMALLER.
1099 * Well, that's really hard to do with the code as-is. This behavior is
1100 * closer to correct, but still not technically right.
1101 */
1102 #define PREFER_LARGER_OR_ZERO(comp) \
1103 do { \
1104 if ( ((*a)-> comp) != ((*b)-> comp) ) { \
1105 if ( ((*a)-> comp) == 0 ) { \
1106 return -1; \
1107 } \
1108 else if ( ((*b)-> comp) == 0 ) { \
1109 return 1; \
1110 } \
1111 else { \
1112 return ((*b)-> comp) - ((*a)-> comp) ; \
1113 } \
1114 } \
1115 } while( 0 )
1116
1117 #define PREFER_LARGER(comp) \
1118 do { \
1119 if ( ((*a)-> comp) != ((*b)-> comp) ) { \
1120 return ((*b)-> comp) - ((*a)-> comp) ; \
1121 } \
1122 } while( 0 )
1123
1124 #define PREFER_SMALLER(comp) \
1125 do { \
1126 if ( ((*a)-> comp) != ((*b)-> comp) ) { \
1127 return ((*a)-> comp) - ((*b)-> comp) ; \
1128 } \
1129 } while( 0 )
1130
1131 /**
1132 * Compare two GLXFBConfigs. This function is intended to be used as the
1133 * compare function passed in to qsort.
1134 *
1135 * \returns If \c a is a "better" config, according to the specification of
1136 * SGIX_fbconfig, a number less than zero is returned. If \c b is
1137 * better, then a number greater than zero is return. If both are
1138 * equal, zero is returned.
1139 * \sa qsort, glXChooseVisual, glXChooseFBConfig, glXChooseFBConfigSGIX
1140 */
1141 static int
1142 fbconfig_compare( const __GLcontextModes * const * const a,
1143 const __GLcontextModes * const * const b )
1144 {
1145 /* The order of these comparisons must NOT change. It is defined by
1146 * the GLX 1.3 spec and ARB_multisample.
1147 */
1148
1149 PREFER_SMALLER( visualSelectGroup );
1150
1151 /* The sort order for the visualRating is GLX_NONE, GLX_SLOW, and
1152 * GLX_NON_CONFORMANT_CONFIG. It just so happens that this is the
1153 * numerical sort order of the enums (0x8000, 0x8001, and 0x800D).
1154 */
1155 PREFER_SMALLER( visualRating );
1156
1157 /* This isn't quite right. It is supposed to compare the sum of the
1158 * components the user specifically set minimums for.
1159 */
1160 PREFER_LARGER_OR_ZERO( redBits );
1161 PREFER_LARGER_OR_ZERO( greenBits );
1162 PREFER_LARGER_OR_ZERO( blueBits );
1163 PREFER_LARGER_OR_ZERO( alphaBits );
1164
1165 PREFER_SMALLER( rgbBits );
1166
1167 if ( ((*a)->doubleBufferMode != (*b)->doubleBufferMode) ) {
1168 /* Prefer single-buffer.
1169 */
1170 return ( !(*a)->doubleBufferMode ) ? -1 : 1;
1171 }
1172
1173 PREFER_SMALLER( numAuxBuffers );
1174
1175 PREFER_LARGER_OR_ZERO( depthBits );
1176 PREFER_SMALLER( stencilBits );
1177
1178 /* This isn't quite right. It is supposed to compare the sum of the
1179 * components the user specifically set minimums for.
1180 */
1181 PREFER_LARGER_OR_ZERO( accumRedBits );
1182 PREFER_LARGER_OR_ZERO( accumGreenBits );
1183 PREFER_LARGER_OR_ZERO( accumBlueBits );
1184 PREFER_LARGER_OR_ZERO( accumAlphaBits );
1185
1186 PREFER_SMALLER( visualType );
1187
1188 /* None of the multisample specs say where this comparison should happen,
1189 * so I put it near the end.
1190 */
1191 PREFER_SMALLER( sampleBuffers );
1192 PREFER_SMALLER( samples );
1193
1194 /* None of the pbuffer or fbconfig specs say that this comparison needs
1195 * to happen at all, but it seems like it should.
1196 */
1197 PREFER_LARGER( maxPbufferWidth );
1198 PREFER_LARGER( maxPbufferHeight );
1199 PREFER_LARGER( maxPbufferPixels );
1200
1201 return 0;
1202 }
1203
1204
1205 /**
1206 * Selects and sorts a subset of the supplied configs based on the attributes.
1207 * This function forms to basis of \c glXChooseVisual, \c glXChooseFBConfig,
1208 * and \c glXChooseFBConfigSGIX.
1209 *
1210 * \param configs Array of pointers to possible configs. The elements of
1211 * this array that do not meet the criteria will be set to
1212 * NULL. The remaining elements will be sorted according to
1213 * the various visual / FBConfig selection rules.
1214 * \param num_configs Number of elements in the \c configs array.
1215 * \param attribList Attributes used select from \c configs. This array is
1216 * terminated by a \c None tag. The array can either take
1217 * the form expected by \c glXChooseVisual (where boolean
1218 * tags do not have a value) or by \c glXChooseFBConfig
1219 * (where every tag has a value).
1220 * \param fbconfig_style_tags Selects whether \c attribList is in
1221 * \c glXChooseVisual style or
1222 * \c glXChooseFBConfig style.
1223 * \returns The number of valid elements left in \c configs.
1224 *
1225 * \sa glXChooseVisual, glXChooseFBConfig, glXChooseFBConfigSGIX
1226 */
1227 static int
1228 choose_visual( __GLcontextModes ** configs, int num_configs,
1229 const int *attribList, GLboolean fbconfig_style_tags )
1230 {
1231 __GLcontextModes test_config;
1232 int base;
1233 int i;
1234
1235 /* This is a fairly direct implementation of the selection method
1236 * described by GLX_SGIX_fbconfig. Start by culling out all the
1237 * configs that are not compatible with the selected parameter
1238 * list.
1239 */
1240
1241 init_fbconfig_for_chooser( & test_config, fbconfig_style_tags );
1242 __glXInitializeVisualConfigFromTags( & test_config, 512,
1243 (const INT32 *) attribList,
1244 GL_TRUE, fbconfig_style_tags );
1245
1246 base = 0;
1247 for ( i = 0 ; i < num_configs ; i++ ) {
1248 if ( fbconfigs_compatible( & test_config, configs[i] ) ) {
1249 configs[ base ] = configs[ i ];
1250 base++;
1251 }
1252 }
1253
1254 if ( base == 0 ) {
1255 return 0;
1256 }
1257
1258 if ( base < num_configs ) {
1259 (void) memset( & configs[ base ], 0,
1260 sizeof( void * ) * (num_configs - base) );
1261 }
1262
1263 /* After the incompatible configs are removed, the resulting
1264 * list is sorted according to the rules set out in the various
1265 * specifications.
1266 */
1267
1268 qsort( configs, base, sizeof( __GLcontextModes * ),
1269 (int (*)(const void*, const void*)) fbconfig_compare );
1270 return base;
1271 }
1272
1273
1274
1275
1276 /*
1277 ** Return the visual that best matches the template. Return None if no
1278 ** visual matches the template.
1279 */
1280 PUBLIC XVisualInfo *glXChooseVisual(Display *dpy, int screen, int *attribList)
1281 {
1282 XVisualInfo *visualList = NULL;
1283 __GLXdisplayPrivate *priv;
1284 __GLXscreenConfigs *psc;
1285 __GLcontextModes test_config;
1286 __GLcontextModes *modes;
1287 const __GLcontextModes *best_config = NULL;
1288
1289 /*
1290 ** Get a list of all visuals, return if list is empty
1291 */
1292 if ( GetGLXPrivScreenConfig( dpy, screen, & priv, & psc ) != Success ) {
1293 return None;
1294 }
1295
1296
1297 /*
1298 ** Build a template from the defaults and the attribute list
1299 ** Free visual list and return if an unexpected token is encountered
1300 */
1301 init_fbconfig_for_chooser( & test_config, GL_FALSE );
1302 __glXInitializeVisualConfigFromTags( & test_config, 512,
1303 (const INT32 *) attribList,
1304 GL_TRUE, GL_FALSE );
1305
1306 /*
1307 ** Eliminate visuals that don't meet minimum requirements
1308 ** Compute a score for those that do
1309 ** Remember which visual, if any, got the highest score
1310 */
1311 for ( modes = psc->visuals ; modes != NULL ; modes = modes->next ) {
1312 if ( fbconfigs_compatible( & test_config, modes )
1313 && ((best_config == NULL)
1314 || (fbconfig_compare( (const __GLcontextModes * const * const)&modes, &best_config ) < 0)) ) {
1315 best_config = modes;
1316 }
1317 }
1318
1319 /*
1320 ** If no visual is acceptable, return None
1321 ** Otherwise, create an XVisualInfo list with just the selected X visual
1322 ** and return this.
1323 */
1324 if (best_config != NULL) {
1325 XVisualInfo visualTemplate;
1326 int i;
1327
1328 visualTemplate.screen = screen;
1329 visualTemplate.visualid = best_config->visualID;
1330 visualList = XGetVisualInfo( dpy, VisualScreenMask|VisualIDMask,
1331 &visualTemplate, &i );
1332 }
1333
1334 return visualList;
1335 }
1336
1337
1338 PUBLIC const char *glXQueryExtensionsString( Display *dpy, int screen )
1339 {
1340 __GLXscreenConfigs *psc;
1341 __GLXdisplayPrivate *priv;
1342
1343 if ( GetGLXPrivScreenConfig( dpy, screen, & priv, & psc ) != Success ) {
1344 return NULL;
1345 }
1346
1347 if (!psc->effectiveGLXexts) {
1348 if (!psc->serverGLXexts) {
1349 psc->serverGLXexts =
1350 __glXQueryServerString(dpy, priv->majorOpcode, screen, GLX_EXTENSIONS);
1351 }
1352
1353 __glXCalculateUsableExtensions(psc,
1354 #ifdef GLX_DIRECT_RENDERING
1355 (psc->driScreen != NULL),
1356 #else
1357 GL_FALSE,
1358 #endif
1359 priv->minorVersion);
1360 }
1361
1362 return psc->effectiveGLXexts;
1363 }
1364
1365 PUBLIC const char *glXGetClientString( Display *dpy, int name )
1366 {
1367 switch(name) {
1368 case GLX_VENDOR:
1369 return (__glXGLXClientVendorName);
1370 case GLX_VERSION:
1371 return (__glXGLXClientVersion);
1372 case GLX_EXTENSIONS:
1373 return (__glXGetClientExtensions());
1374 default:
1375 return NULL;
1376 }
1377 }
1378
1379 PUBLIC const char *glXQueryServerString( Display *dpy, int screen, int name )
1380 {
1381 __GLXscreenConfigs *psc;
1382 __GLXdisplayPrivate *priv;
1383 const char ** str;
1384
1385
1386 if ( GetGLXPrivScreenConfig( dpy, screen, & priv, & psc ) != Success ) {
1387 return NULL;
1388 }
1389
1390 switch(name) {
1391 case GLX_VENDOR:
1392 str = & priv->serverGLXvendor;
1393 break;
1394 case GLX_VERSION:
1395 str = & priv->serverGLXversion;
1396 break;
1397 case GLX_EXTENSIONS:
1398 str = & psc->serverGLXexts;
1399 break;
1400 default:
1401 return NULL;
1402 }
1403
1404 if ( *str == NULL ) {
1405 *str = __glXQueryServerString(dpy, priv->majorOpcode, screen, name);
1406 }
1407
1408 return *str;
1409 }
1410
1411 void __glXClientInfo ( Display *dpy, int opcode )
1412 {
1413 char * ext_str = __glXGetClientGLExtensionString();
1414 int size = strlen( ext_str ) + 1;
1415
1416 #ifdef USE_XCB
1417 xcb_connection_t *c = XGetXCBConnection(dpy);
1418 xcb_glx_client_info(c,
1419 GLX_MAJOR_VERSION,
1420 GLX_MINOR_VERSION,
1421 size,
1422 (const uint8_t *)ext_str);
1423 #else
1424 xGLXClientInfoReq *req;
1425
1426 /* Send the glXClientInfo request */
1427 LockDisplay(dpy);
1428 GetReq(GLXClientInfo,req);
1429 req->reqType = opcode;
1430 req->glxCode = X_GLXClientInfo;
1431 req->major = GLX_MAJOR_VERSION;
1432 req->minor = GLX_MINOR_VERSION;
1433
1434 req->length += (size + 3) >> 2;
1435 req->numbytes = size;
1436 Data(dpy, ext_str, size);
1437
1438 UnlockDisplay(dpy);
1439 SyncHandle();
1440 #endif /* USE_XCB */
1441
1442 Xfree( ext_str );
1443 }
1444
1445
1446 /*
1447 ** EXT_import_context
1448 */
1449
1450 PUBLIC Display *glXGetCurrentDisplay(void)
1451 {
1452 GLXContext gc = __glXGetCurrentContext();
1453 if (NULL == gc) return NULL;
1454 return gc->currentDpy;
1455 }
1456
1457 PUBLIC GLX_ALIAS(Display *, glXGetCurrentDisplayEXT, (void), (),
1458 glXGetCurrentDisplay)
1459
1460 /**
1461 * Used internally by libGL to send \c xGLXQueryContextinfoExtReq requests
1462 * to the X-server.
1463 *
1464 * \param dpy Display where \c ctx was created.
1465 * \param ctx Context to query.
1466 * \returns \c Success on success. \c GLX_BAD_CONTEXT if \c ctx is invalid,
1467 * or zero if the request failed due to internal problems (i.e.,
1468 * unable to allocate temporary memory, etc.)
1469 *
1470 * \note
1471 * This function dynamically determines whether to use the EXT_import_context
1472 * version of the protocol or the GLX 1.3 version of the protocol.
1473 */
1474 static int __glXQueryContextInfo(Display *dpy, GLXContext ctx)
1475 {
1476 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
1477 xGLXQueryContextReply reply;
1478 CARD8 opcode;
1479 GLuint numValues;
1480 int retval;
1481
1482 if (ctx == NULL) {
1483 return GLX_BAD_CONTEXT;
1484 }
1485 opcode = __glXSetupForCommand(dpy);
1486 if (!opcode) {
1487 return 0;
1488 }
1489
1490 /* Send the glXQueryContextInfoEXT request */
1491 LockDisplay(dpy);
1492
1493 if ( (priv->majorVersion > 1) || (priv->minorVersion >= 3) ) {
1494 xGLXQueryContextReq *req;
1495
1496 GetReq(GLXQueryContext, req);
1497
1498 req->reqType = opcode;
1499 req->glxCode = X_GLXQueryContext;
1500 req->context = (unsigned int)(ctx->xid);
1501 }
1502 else {
1503 xGLXVendorPrivateReq *vpreq;
1504 xGLXQueryContextInfoEXTReq *req;
1505
1506 GetReqExtra( GLXVendorPrivate,
1507 sz_xGLXQueryContextInfoEXTReq - sz_xGLXVendorPrivateReq,
1508 vpreq );
1509 req = (xGLXQueryContextInfoEXTReq *)vpreq;
1510 req->reqType = opcode;
1511 req->glxCode = X_GLXVendorPrivateWithReply;
1512 req->vendorCode = X_GLXvop_QueryContextInfoEXT;
1513 req->context = (unsigned int)(ctx->xid);
1514 }
1515
1516 _XReply(dpy, (xReply*) &reply, 0, False);
1517
1518 numValues = reply.n;
1519 if (numValues == 0)
1520 retval = Success;
1521 else if (numValues > __GLX_MAX_CONTEXT_PROPS)
1522 retval = 0;
1523 else
1524 {
1525 int *propList, *pProp;
1526 int nPropListBytes;
1527 int i;
1528
1529 nPropListBytes = numValues << 3;
1530 propList = (int *) Xmalloc(nPropListBytes);
1531 if (NULL == propList) {
1532 retval = 0;
1533 } else {
1534 _XRead(dpy, (char *)propList, nPropListBytes);
1535 pProp = propList;
1536 for (i=0; i < numValues; i++) {
1537 switch (*pProp++) {
1538 case GLX_SHARE_CONTEXT_EXT:
1539 ctx->share_xid = *pProp++;
1540 break;
1541 case GLX_VISUAL_ID_EXT:
1542 ctx->mode =
1543 _gl_context_modes_find_visual(ctx->psc->visuals, *pProp++);
1544 break;
1545 case GLX_SCREEN:
1546 ctx->screen = *pProp++;
1547 break;
1548 case GLX_FBCONFIG_ID:
1549 ctx->mode =
1550 _gl_context_modes_find_fbconfig(ctx->psc->configs, *pProp++);
1551 break;
1552 case GLX_RENDER_TYPE:
1553 ctx->renderType = *pProp++;
1554 break;
1555 default:
1556 pProp++;
1557 continue;
1558 }
1559 }
1560 Xfree((char *)propList);
1561 retval = Success;
1562 }
1563 }
1564 UnlockDisplay(dpy);
1565 SyncHandle();
1566 return retval;
1567 }
1568
1569 PUBLIC int
1570 glXQueryContext(Display *dpy, GLXContext ctx, int attribute, int *value)
1571 {
1572 int retVal;
1573
1574 /* get the information from the server if we don't have it already */
1575 #ifdef GLX_DIRECT_RENDERING
1576 if (!ctx->driContext && (ctx->mode == NULL)) {
1577 #else
1578 if (ctx->mode == NULL) {
1579 #endif
1580 retVal = __glXQueryContextInfo(dpy, ctx);
1581 if (Success != retVal) return retVal;
1582 }
1583 switch (attribute) {
1584 case GLX_SHARE_CONTEXT_EXT:
1585 *value = (int)(ctx->share_xid);
1586 break;
1587 case GLX_VISUAL_ID_EXT:
1588 *value = ctx->mode ? ctx->mode->visualID : None;
1589 break;
1590 case GLX_SCREEN:
1591 *value = (int)(ctx->screen);
1592 break;
1593 case GLX_FBCONFIG_ID:
1594 *value = ctx->mode ? ctx->mode->fbconfigID : None;
1595 break;
1596 case GLX_RENDER_TYPE:
1597 *value = (int)(ctx->renderType);
1598 break;
1599 default:
1600 return GLX_BAD_ATTRIBUTE;
1601 }
1602 return Success;
1603 }
1604
1605 PUBLIC GLX_ALIAS( int, glXQueryContextInfoEXT,
1606 (Display *dpy, GLXContext ctx, int attribute, int *value),
1607 (dpy, ctx, attribute, value),
1608 glXQueryContext )
1609
1610 PUBLIC GLXContextID glXGetContextIDEXT(const GLXContext ctx)
1611 {
1612 return ctx->xid;
1613 }
1614
1615 PUBLIC GLXContext glXImportContextEXT(Display *dpy, GLXContextID contextID)
1616 {
1617 GLXContext ctx;
1618
1619 if (contextID == None) {
1620 return NULL;
1621 }
1622 if (__glXIsDirect(dpy, contextID)) {
1623 return NULL;
1624 }
1625
1626 ctx = CreateContext(dpy, NULL, NULL, NULL, False, contextID, False, 0);
1627 if (NULL != ctx) {
1628 if (Success != __glXQueryContextInfo(dpy, ctx)) {
1629 return NULL;
1630 }
1631 }
1632 return ctx;
1633 }
1634
1635 PUBLIC void glXFreeContextEXT(Display *dpy, GLXContext ctx)
1636 {
1637 DestroyContext(dpy, ctx);
1638 }
1639
1640
1641
1642 /*
1643 * GLX 1.3 functions - these are just stubs for now!
1644 */
1645
1646 PUBLIC GLXFBConfig *glXChooseFBConfig(Display *dpy, int screen,
1647 const int *attribList, int *nitems)
1648 {
1649 __GLcontextModes ** config_list;
1650 int list_size;
1651
1652
1653 config_list = (__GLcontextModes **)
1654 glXGetFBConfigs( dpy, screen, & list_size );
1655
1656 if ( (config_list != NULL) && (list_size > 0) && (attribList != NULL) ) {
1657 list_size = choose_visual( config_list, list_size, attribList,
1658 GL_TRUE );
1659 if ( list_size == 0 ) {
1660 XFree( config_list );
1661 config_list = NULL;
1662 }
1663 }
1664
1665 *nitems = list_size;
1666 return (GLXFBConfig *) config_list;
1667 }
1668
1669
1670 PUBLIC GLXContext glXCreateNewContext(Display *dpy, GLXFBConfig config,
1671 int renderType, GLXContext shareList,
1672 Bool allowDirect)
1673 {
1674 return CreateContext( dpy, NULL, (__GLcontextModes *) config, shareList,
1675 allowDirect, None, True, renderType );
1676 }
1677
1678
1679 PUBLIC GLXDrawable glXGetCurrentReadDrawable(void)
1680 {
1681 GLXContext gc = __glXGetCurrentContext();
1682 return gc->currentReadable;
1683 }
1684
1685
1686 PUBLIC GLXFBConfig *glXGetFBConfigs(Display *dpy, int screen, int *nelements)
1687 {
1688 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
1689 __GLcontextModes ** config = NULL;
1690 int i;
1691
1692 *nelements = 0;
1693 if ( (priv->screenConfigs != NULL)
1694 && (screen >= 0) && (screen <= ScreenCount(dpy))
1695 && (priv->screenConfigs[screen].configs != NULL)
1696 && (priv->screenConfigs[screen].configs->fbconfigID != GLX_DONT_CARE) ) {
1697 unsigned num_configs = 0;
1698 __GLcontextModes * modes;
1699
1700
1701 for ( modes = priv->screenConfigs[screen].configs
1702 ; modes != NULL
1703 ; modes = modes->next ) {
1704 if ( modes->fbconfigID != GLX_DONT_CARE ) {
1705 num_configs++;
1706 }
1707 }
1708
1709 config = (__GLcontextModes **) Xmalloc( sizeof(__GLcontextModes *)
1710 * num_configs );
1711 if ( config != NULL ) {
1712 *nelements = num_configs;
1713 i = 0;
1714 for ( modes = priv->screenConfigs[screen].configs
1715 ; modes != NULL
1716 ; modes = modes->next ) {
1717 if ( modes->fbconfigID != GLX_DONT_CARE ) {
1718 config[i] = modes;
1719 i++;
1720 }
1721 }
1722 }
1723 }
1724 return (GLXFBConfig *) config;
1725 }
1726
1727
1728 PUBLIC int glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config,
1729 int attribute, int *value)
1730 {
1731 __GLcontextModes * const modes = ValidateGLXFBConfig( dpy, config );
1732
1733 return (modes != NULL)
1734 ? _gl_get_context_mode_data( modes, attribute, value )
1735 : GLXBadFBConfig;
1736 }
1737
1738
1739 PUBLIC XVisualInfo *glXGetVisualFromFBConfig(Display *dpy, GLXFBConfig config)
1740 {
1741 XVisualInfo visualTemplate;
1742 __GLcontextModes * fbconfig = (__GLcontextModes *) config;
1743 int count;
1744
1745 /*
1746 ** Get a list of all visuals, return if list is empty
1747 */
1748 visualTemplate.visualid = fbconfig->visualID;
1749 return XGetVisualInfo(dpy,VisualIDMask,&visualTemplate,&count);
1750 }
1751
1752
1753 /*
1754 ** GLX_SGI_swap_control
1755 */
1756 static int __glXSwapIntervalSGI(int interval)
1757 {
1758 xGLXVendorPrivateReq *req;
1759 GLXContext gc = __glXGetCurrentContext();
1760 Display * dpy;
1761 CARD32 * interval_ptr;
1762 CARD8 opcode;
1763
1764 if ( gc == NULL ) {
1765 return GLX_BAD_CONTEXT;
1766 }
1767
1768 if ( interval <= 0 ) {
1769 return GLX_BAD_VALUE;
1770 }
1771
1772 #ifdef __DRI_SWAP_CONTROL
1773 if (gc->driContext) {
1774 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( gc->currentDpy,
1775 gc->screen );
1776 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(gc->currentDpy,
1777 gc->currentDrawable,
1778 NULL);
1779 if (psc->swapControl != NULL && pdraw != NULL) {
1780 psc->swapControl->setSwapInterval(pdraw->driDrawable, interval);
1781 return 0;
1782 }
1783 else {
1784 return GLX_BAD_CONTEXT;
1785 }
1786 }
1787 #endif
1788 dpy = gc->currentDpy;
1789 opcode = __glXSetupForCommand(dpy);
1790 if (!opcode) {
1791 return 0;
1792 }
1793
1794 /* Send the glXSwapIntervalSGI request */
1795 LockDisplay(dpy);
1796 GetReqExtra(GLXVendorPrivate,sizeof(CARD32),req);
1797 req->reqType = opcode;
1798 req->glxCode = X_GLXVendorPrivate;
1799 req->vendorCode = X_GLXvop_SwapIntervalSGI;
1800 req->contextTag = gc->currentContextTag;
1801
1802 interval_ptr = (CARD32 *) (req + 1);
1803 *interval_ptr = interval;
1804
1805 UnlockDisplay(dpy);
1806 SyncHandle();
1807 XFlush(dpy);
1808
1809 return 0;
1810 }
1811
1812
1813 /*
1814 ** GLX_MESA_swap_control
1815 */
1816 static int __glXSwapIntervalMESA(unsigned int interval)
1817 {
1818 #ifdef __DRI_SWAP_CONTROL
1819 GLXContext gc = __glXGetCurrentContext();
1820
1821 if ( interval < 0 ) {
1822 return GLX_BAD_VALUE;
1823 }
1824
1825 if (gc != NULL && gc->driContext) {
1826 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( gc->currentDpy,
1827 gc->screen );
1828
1829 if ( (psc != NULL) && (psc->driScreen != NULL) ) {
1830 __GLXDRIdrawable *pdraw =
1831 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable, NULL);
1832 if (psc->swapControl != NULL && pdraw != NULL) {
1833 psc->swapControl->setSwapInterval(pdraw->driDrawable, interval);
1834 return 0;
1835 }
1836 }
1837 }
1838 #else
1839 (void) interval;
1840 #endif
1841
1842 return GLX_BAD_CONTEXT;
1843 }
1844
1845
1846 static int __glXGetSwapIntervalMESA(void)
1847 {
1848 #ifdef __DRI_SWAP_CONTROL
1849 GLXContext gc = __glXGetCurrentContext();
1850
1851 if (gc != NULL && gc->driContext) {
1852 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( gc->currentDpy,
1853 gc->screen );
1854
1855 if ( (psc != NULL) && (psc->driScreen != NULL) ) {
1856 __GLXDRIdrawable *pdraw =
1857 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable, NULL);
1858 if (psc->swapControl != NULL && pdraw != NULL) {
1859 return psc->swapControl->getSwapInterval(pdraw->driDrawable);
1860 }
1861 }
1862 }
1863 #endif
1864
1865 return 0;
1866 }
1867
1868
1869 /*
1870 ** GLX_MESA_swap_frame_usage
1871 */
1872
1873 static GLint __glXBeginFrameTrackingMESA(Display *dpy, GLXDrawable drawable)
1874 {
1875 int status = GLX_BAD_CONTEXT;
1876 #ifdef __DRI_FRAME_TRACKING
1877 int screen;
1878 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &screen);
1879 __GLXscreenConfigs * const psc = GetGLXScreenConfigs(dpy, screen);
1880
1881 if (pdraw != NULL && psc->frameTracking != NULL)
1882 status = psc->frameTracking->frameTracking(pdraw->driDrawable, GL_TRUE);
1883 #else
1884 (void) dpy;
1885 (void) drawable;
1886 #endif
1887 return status;
1888 }
1889
1890
1891 static GLint __glXEndFrameTrackingMESA(Display *dpy, GLXDrawable drawable)
1892 {
1893 int status = GLX_BAD_CONTEXT;
1894 #ifdef __DRI_FRAME_TRACKING
1895 int screen;
1896 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, & screen);
1897 __GLXscreenConfigs *psc = GetGLXScreenConfigs(dpy, screen);
1898
1899 if (pdraw != NULL && psc->frameTracking != NULL)
1900 status = psc->frameTracking->frameTracking(pdraw->driDrawable,
1901 GL_FALSE);
1902 #else
1903 (void) dpy;
1904 (void) drawable;
1905 #endif
1906 return status;
1907 }
1908
1909
1910 static GLint __glXGetFrameUsageMESA(Display *dpy, GLXDrawable drawable,
1911 GLfloat *usage)
1912 {
1913 int status = GLX_BAD_CONTEXT;
1914 #ifdef __DRI_FRAME_TRACKING
1915 int screen;
1916 __GLXDRIdrawable * const pdraw = GetGLXDRIDrawable(dpy, drawable, & screen);
1917 __GLXscreenConfigs * const psc = GetGLXScreenConfigs(dpy, screen);
1918
1919 if (pdraw != NULL && psc->frameTracking != NULL) {
1920 int64_t sbc, missedFrames;
1921 float lastMissedUsage;
1922
1923 status = psc->frameTracking->queryFrameTracking(pdraw->driDrawable,
1924 &sbc,
1925 &missedFrames,
1926 &lastMissedUsage,
1927 usage);
1928 }
1929 #else
1930 (void) dpy;
1931 (void) drawable;
1932 (void) usage;
1933 #endif
1934 return status;
1935 }
1936
1937
1938 static GLint __glXQueryFrameTrackingMESA(Display *dpy, GLXDrawable drawable,
1939 int64_t *sbc, int64_t *missedFrames,
1940 GLfloat *lastMissedUsage)
1941 {
1942 int status = GLX_BAD_CONTEXT;
1943 #ifdef __DRI_FRAME_TRACKING
1944 int screen;
1945 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, & screen);
1946 __GLXscreenConfigs * const psc = GetGLXScreenConfigs(dpy, screen);
1947
1948 if (pdraw != NULL && psc->frameTracking != NULL) {
1949 float usage;
1950
1951 status = psc->frameTracking->queryFrameTracking(pdraw->driDrawable,
1952 sbc, missedFrames,
1953 lastMissedUsage, &usage);
1954 }
1955 #else
1956 (void) dpy;
1957 (void) drawable;
1958 (void) sbc;
1959 (void) missedFrames;
1960 (void) lastMissedUsage;
1961 #endif
1962 return status;
1963 }
1964
1965
1966 /*
1967 ** GLX_SGI_video_sync
1968 */
1969 static int __glXGetVideoSyncSGI(unsigned int *count)
1970 {
1971 /* FIXME: Looking at the GLX_SGI_video_sync spec in the extension registry,
1972 * FIXME: there should be a GLX encoding for this call. I can find no
1973 * FIXME: documentation for the GLX encoding.
1974 */
1975 #ifdef __DRI_MEDIA_STREAM_COUNTER
1976 GLXContext gc = __glXGetCurrentContext();
1977
1978
1979 if (gc != NULL && gc->driContext) {
1980 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( gc->currentDpy,
1981 gc->screen );
1982 if ( psc->msc && psc->driScreen ) {
1983 __GLXDRIdrawable *pdraw =
1984 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable, NULL);
1985 int64_t temp;
1986 int ret;
1987
1988 ret = (*psc->msc->getDrawableMSC)(psc->__driScreen,
1989 pdraw->driDrawable, &temp);
1990 *count = (unsigned) temp;
1991
1992 return (ret == 0) ? 0 : GLX_BAD_CONTEXT;
1993 }
1994 }
1995 #else
1996 (void) count;
1997 #endif
1998 return GLX_BAD_CONTEXT;
1999 }
2000
2001 static int __glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count)
2002 {
2003 #ifdef __DRI_MEDIA_STREAM_COUNTER
2004 GLXContext gc = __glXGetCurrentContext();
2005
2006 if ( divisor <= 0 || remainder < 0 )
2007 return GLX_BAD_VALUE;
2008
2009 if (gc != NULL && gc->driContext) {
2010 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( gc->currentDpy,
2011 gc->screen );
2012 if (psc->msc != NULL && psc->driScreen ) {
2013 __GLXDRIdrawable *pdraw =
2014 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable, NULL);
2015 int ret;
2016 int64_t msc;
2017 int64_t sbc;
2018
2019 ret = (*psc->msc->waitForMSC)(pdraw->driDrawable, 0,
2020 divisor, remainder, &msc, &sbc);
2021 *count = (unsigned) msc;
2022 return (ret == 0) ? 0 : GLX_BAD_CONTEXT;
2023 }
2024 }
2025 #else
2026 (void) count;
2027 #endif
2028 return GLX_BAD_CONTEXT;
2029 }
2030
2031
2032 /*
2033 ** GLX_SGIX_fbconfig
2034 ** Many of these functions are aliased to GLX 1.3 entry points in the
2035 ** GLX_functions table.
2036 */
2037
2038 PUBLIC GLX_ALIAS(int, glXGetFBConfigAttribSGIX,
2039 (Display *dpy, GLXFBConfigSGIX config, int attribute, int *value),
2040 (dpy, config, attribute, value),
2041 glXGetFBConfigAttrib)
2042
2043 PUBLIC GLX_ALIAS(GLXFBConfigSGIX *, glXChooseFBConfigSGIX,
2044 (Display *dpy, int screen, int *attrib_list, int *nelements),
2045 (dpy, screen, attrib_list, nelements),
2046 glXChooseFBConfig)
2047
2048 PUBLIC GLX_ALIAS(XVisualInfo *, glXGetVisualFromFBConfigSGIX,
2049 (Display * dpy, GLXFBConfigSGIX config),
2050 (dpy, config),
2051 glXGetVisualFromFBConfig)
2052
2053 PUBLIC GLXPixmap glXCreateGLXPixmapWithConfigSGIX(Display *dpy,
2054 GLXFBConfigSGIX config, Pixmap pixmap)
2055 {
2056 xGLXVendorPrivateWithReplyReq *vpreq;
2057 xGLXCreateGLXPixmapWithConfigSGIXReq *req;
2058 GLXPixmap xid = None;
2059 CARD8 opcode;
2060 const __GLcontextModes * const fbconfig = (__GLcontextModes *) config;
2061 __GLXscreenConfigs * psc;
2062
2063
2064 if ( (dpy == NULL) || (config == NULL) ) {
2065 return None;
2066 }
2067
2068 psc = GetGLXScreenConfigs( dpy, fbconfig->screen );
2069 if ( (psc != NULL)
2070 && __glXExtensionBitIsEnabled( psc, SGIX_fbconfig_bit ) ) {
2071 opcode = __glXSetupForCommand(dpy);
2072 if (!opcode) {
2073 return None;
2074 }
2075
2076 /* Send the glXCreateGLXPixmapWithConfigSGIX request */
2077 LockDisplay(dpy);
2078 GetReqExtra(GLXVendorPrivateWithReply,
2079 sz_xGLXCreateGLXPixmapWithConfigSGIXReq-sz_xGLXVendorPrivateWithReplyReq,vpreq);
2080 req = (xGLXCreateGLXPixmapWithConfigSGIXReq *)vpreq;
2081 req->reqType = opcode;
2082 req->glxCode = X_GLXVendorPrivateWithReply;
2083 req->vendorCode = X_GLXvop_CreateGLXPixmapWithConfigSGIX;
2084 req->screen = fbconfig->screen;
2085 req->fbconfig = fbconfig->fbconfigID;
2086 req->pixmap = pixmap;
2087 req->glxpixmap = xid = XAllocID(dpy);
2088 UnlockDisplay(dpy);
2089 SyncHandle();
2090 }
2091
2092 return xid;
2093 }
2094
2095 PUBLIC GLXContext glXCreateContextWithConfigSGIX(Display *dpy,
2096 GLXFBConfigSGIX config, int renderType,
2097 GLXContext shareList, Bool allowDirect)
2098 {
2099 GLXContext gc = NULL;
2100 const __GLcontextModes * const fbconfig = (__GLcontextModes *) config;
2101 __GLXscreenConfigs * psc;
2102
2103
2104 if ( (dpy == NULL) || (config == NULL) ) {
2105 return None;
2106 }
2107
2108 psc = GetGLXScreenConfigs( dpy, fbconfig->screen );
2109 if ( (psc != NULL)
2110 && __glXExtensionBitIsEnabled( psc, SGIX_fbconfig_bit ) ) {
2111 gc = CreateContext( dpy, NULL, (__GLcontextModes *) config, shareList,
2112 allowDirect, None, False, renderType );
2113 }
2114
2115 return gc;
2116 }
2117
2118
2119 PUBLIC GLXFBConfigSGIX glXGetFBConfigFromVisualSGIX(Display *dpy,
2120 XVisualInfo *vis)
2121 {
2122 __GLXdisplayPrivate *priv;
2123 __GLXscreenConfigs *psc;
2124
2125 if ( (GetGLXPrivScreenConfig( dpy, vis->screen, & priv, & psc ) != Success)
2126 && __glXExtensionBitIsEnabled( psc, SGIX_fbconfig_bit )
2127 && (psc->configs->fbconfigID != GLX_DONT_CARE) ) {
2128 return (GLXFBConfigSGIX) _gl_context_modes_find_visual( psc->configs,
2129 vis->visualid );
2130 }
2131
2132 return NULL;
2133 }
2134
2135
2136 /*
2137 ** GLX_SGIX_swap_group
2138 */
2139 static void __glXJoinSwapGroupSGIX(Display *dpy, GLXDrawable drawable,
2140 GLXDrawable member)
2141 {
2142 (void) dpy;
2143 (void) drawable;
2144 (void) member;
2145 }
2146
2147
2148 /*
2149 ** GLX_SGIX_swap_barrier
2150 */
2151 static void __glXBindSwapBarrierSGIX(Display *dpy, GLXDrawable drawable,
2152 int barrier)
2153 {
2154 (void) dpy;
2155 (void) drawable;
2156 (void) barrier;
2157 }
2158
2159 static Bool __glXQueryMaxSwapBarriersSGIX(Display *dpy, int screen, int *max)
2160 {
2161 (void) dpy;
2162 (void) screen;
2163 (void) max;
2164 return False;
2165 }
2166
2167
2168 /*
2169 ** GLX_OML_sync_control
2170 */
2171 static Bool __glXGetSyncValuesOML(Display *dpy, GLXDrawable drawable,
2172 int64_t *ust, int64_t *msc, int64_t *sbc)
2173 {
2174 #if defined(__DRI_SWAP_BUFFER_COUNTER) && defined(__DRI_MEDIA_STREAM_COUNTER)
2175 __GLXdisplayPrivate * const priv = __glXInitialize(dpy);
2176
2177 if ( priv != NULL ) {
2178 int i;
2179 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &i);
2180 __GLXscreenConfigs * const psc = &priv->screenConfigs[i];
2181
2182 assert( (pdraw == NULL) || (i != -1) );
2183 return ( (pdraw && psc->sbc && psc->msc)
2184 && ((*psc->msc->getMSC)(psc->driScreen, msc) == 0)
2185 && ((*psc->sbc->getSBC)(pdraw->driDrawable, sbc) == 0)
2186 && (__glXGetUST(ust) == 0) );
2187 }
2188 #else
2189 (void) dpy;
2190 (void) drawable;
2191 (void) ust;
2192 (void) msc;
2193 (void) sbc;
2194 #endif
2195 return False;
2196 }
2197
2198 #ifdef GLX_DIRECT_RENDERING
2199 _X_HIDDEN GLboolean
2200 __driGetMscRateOML(__DRIdrawable *draw,
2201 int32_t *numerator, int32_t *denominator, void *private)
2202 {
2203 #ifdef XF86VIDMODE
2204 __GLXscreenConfigs *psc;
2205 XF86VidModeModeLine mode_line;
2206 int dot_clock;
2207 int i;
2208 __GLXDRIdrawable *glxDraw = private;
2209
2210 psc = glxDraw->psc;
2211 if (XF86VidModeQueryVersion(psc->dpy, &i, &i) &&
2212 XF86VidModeGetModeLine(psc->dpy, psc->scr, &dot_clock, &mode_line) ) {
2213 unsigned n = dot_clock * 1000;
2214 unsigned d = mode_line.vtotal * mode_line.htotal;
2215
2216 # define V_INTERLACE 0x010
2217 # define V_DBLSCAN 0x020
2218
2219 if (mode_line.flags & V_INTERLACE)
2220 n *= 2;
2221 else if (mode_line.flags & V_DBLSCAN)
2222 d *= 2;
2223
2224 /* The OML_sync_control spec requires that if the refresh rate is a
2225 * whole number, that the returned numerator be equal to the refresh
2226 * rate and the denominator be 1.
2227 */
2228
2229 if (n % d == 0) {
2230 n /= d;
2231 d = 1;
2232 }
2233 else {
2234 static const unsigned f[] = { 13, 11, 7, 5, 3, 2, 0 };
2235
2236 /* This is a poor man's way to reduce a fraction. It's far from
2237 * perfect, but it will work well enough for this situation.
2238 */
2239
2240 for (i = 0; f[i] != 0; i++) {
2241 while (n % f[i] == 0 && d % f[i] == 0) {
2242 d /= f[i];
2243 n /= f[i];
2244 }
2245 }
2246 }
2247
2248 *numerator = n;
2249 *denominator = d;
2250
2251 return True;
2252 }
2253 else
2254 return False;
2255 #else
2256 return False;
2257 #endif
2258 }
2259 #endif
2260
2261 /**
2262 * Determine the refresh rate of the specified drawable and display.
2263 *
2264 * \param dpy Display whose refresh rate is to be determined.
2265 * \param drawable Drawable whose refresh rate is to be determined.
2266 * \param numerator Numerator of the refresh rate.
2267 * \param demoninator Denominator of the refresh rate.
2268 * \return If the refresh rate for the specified display and drawable could
2269 * be calculated, True is returned. Otherwise False is returned.
2270 *
2271 * \note This function is implemented entirely client-side. A lot of other
2272 * functionality is required to export GLX_OML_sync_control, so on
2273 * XFree86 this function can be called for direct-rendering contexts
2274 * when GLX_OML_sync_control appears in the client extension string.
2275 */
2276
2277 _X_HIDDEN GLboolean __glXGetMscRateOML(Display * dpy, GLXDrawable drawable,
2278 int32_t * numerator,
2279 int32_t * denominator)
2280 {
2281 #if defined( GLX_DIRECT_RENDERING ) && defined( XF86VIDMODE )
2282 __GLXDRIdrawable *draw = GetGLXDRIDrawable(dpy, drawable, NULL);
2283
2284 if (draw == NULL)
2285 return False;
2286
2287 return __driGetMscRateOML(draw->driDrawable, numerator, denominator, draw);
2288 #else
2289 (void) dpy;
2290 (void) drawable;
2291 (void) numerator;
2292 (void) denominator;
2293 #endif
2294 return False;
2295 }
2296
2297
2298 static int64_t __glXSwapBuffersMscOML(Display *dpy, GLXDrawable drawable,
2299 int64_t target_msc, int64_t divisor,
2300 int64_t remainder)
2301 {
2302 #ifdef __DRI_SWAP_BUFFER_COUNTER
2303 int screen;
2304 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &screen);
2305 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, screen );
2306
2307 /* The OML_sync_control spec says these should "generate a GLX_BAD_VALUE
2308 * error", but it also says "It [glXSwapBuffersMscOML] will return a value
2309 * of -1 if the function failed because of errors detected in the input
2310 * parameters"
2311 */
2312 if ( divisor < 0 || remainder < 0 || target_msc < 0 )
2313 return -1;
2314 if ( divisor > 0 && remainder >= divisor )
2315 return -1;
2316
2317 if (pdraw != NULL && psc->counters != NULL)
2318 return (*psc->sbc->swapBuffersMSC)(pdraw->driDrawable, target_msc,
2319 divisor, remainder);
2320
2321 #else
2322 (void) dpy;
2323 (void) drawable;
2324 (void) target_msc;
2325 (void) divisor;
2326 (void) remainder;
2327 #endif
2328 return 0;
2329 }
2330
2331
2332 static Bool __glXWaitForMscOML(Display * dpy, GLXDrawable drawable,
2333 int64_t target_msc, int64_t divisor,
2334 int64_t remainder, int64_t *ust,
2335 int64_t *msc, int64_t *sbc)
2336 {
2337 #ifdef __DRI_MEDIA_STREAM_COUNTER
2338 int screen;
2339 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &screen);
2340 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, screen );
2341 int ret;
2342
2343 /* The OML_sync_control spec says these should "generate a GLX_BAD_VALUE
2344 * error", but the return type in the spec is Bool.
2345 */
2346 if ( divisor < 0 || remainder < 0 || target_msc < 0 )
2347 return False;
2348 if ( divisor > 0 && remainder >= divisor )
2349 return False;
2350
2351 if (pdraw != NULL && psc->msc != NULL) {
2352 ret = (*psc->msc->waitForMSC)(pdraw->driDrawable, target_msc,
2353 divisor, remainder, msc, sbc);
2354
2355 /* __glXGetUST returns zero on success and non-zero on failure.
2356 * This function returns True on success and False on failure.
2357 */
2358 return ( (ret == 0) && (__glXGetUST( ust ) == 0) );
2359 }
2360 #else
2361 (void) dpy;
2362 (void) drawable;
2363 (void) target_msc;
2364 (void) divisor;
2365 (void) remainder;
2366 (void) ust;
2367 (void) msc;
2368 (void) sbc;
2369 #endif
2370 return False;
2371 }
2372
2373
2374 static Bool __glXWaitForSbcOML(Display * dpy, GLXDrawable drawable,
2375 int64_t target_sbc, int64_t *ust,
2376 int64_t *msc, int64_t *sbc )
2377 {
2378 #ifdef __DRI_SWAP_BUFFER_COUNTER
2379 int screen;
2380 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &screen);
2381 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, screen );
2382 int ret;
2383
2384 /* The OML_sync_control spec says this should "generate a GLX_BAD_VALUE
2385 * error", but the return type in the spec is Bool.
2386 */
2387 if ( target_sbc < 0 )
2388 return False;
2389
2390 if (pdraw != NULL && psc->sbc != NULL) {
2391 ret = (*psc->sbc->waitForSBC)(pdraw->driDrawable, target_sbc, msc, sbc);
2392
2393 /* __glXGetUST returns zero on success and non-zero on failure.
2394 * This function returns True on success and False on failure.
2395 */
2396 return( (ret == 0) && (__glXGetUST( ust ) == 0) );
2397 }
2398 #else
2399 (void) dpy;
2400 (void) drawable;
2401 (void) target_sbc;
2402 (void) ust;
2403 (void) msc;
2404 (void) sbc;
2405 #endif
2406 return False;
2407 }
2408
2409
2410 /**
2411 * GLX_MESA_allocate_memory
2412 */
2413 /*@{*/
2414
2415 PUBLIC void *glXAllocateMemoryMESA(Display *dpy, int scrn,
2416 size_t size, float readFreq,
2417 float writeFreq, float priority)
2418 {
2419 #ifdef __DRI_ALLOCATE
2420 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, scrn );
2421
2422 if (psc && psc->allocate)
2423 return (*psc->allocate->allocateMemory)(psc->__driScreen, size,
2424 readFreq, writeFreq, priority);
2425
2426 #else
2427 (void) dpy;
2428 (void) scrn;
2429 (void) size;
2430 (void) readFreq;
2431 (void) writeFreq;
2432 (void) priority;
2433 #endif /* GLX_DIRECT_RENDERING */
2434
2435 return NULL;
2436 }
2437
2438
2439 PUBLIC void glXFreeMemoryMESA(Display *dpy, int scrn, void *pointer)
2440 {
2441 #ifdef __DRI_ALLOCATE
2442 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, scrn );
2443
2444 if (psc && psc->allocate)
2445 (*psc->allocate->freeMemory)(psc->__driScreen, pointer);
2446
2447 #else
2448 (void) dpy;
2449 (void) scrn;
2450 (void) pointer;
2451 #endif /* GLX_DIRECT_RENDERING */
2452 }
2453
2454
2455 PUBLIC GLuint glXGetMemoryOffsetMESA( Display *dpy, int scrn,
2456 const void *pointer )
2457 {
2458 #ifdef __DRI_ALLOCATE
2459 __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, scrn );
2460
2461 if (psc && psc->allocate)
2462 return (*psc->allocate->memoryOffset)(psc->__driScreen, pointer);
2463
2464 #else
2465 (void) dpy;
2466 (void) scrn;
2467 (void) pointer;
2468 #endif /* GLX_DIRECT_RENDERING */
2469
2470 return ~0L;
2471 }
2472 /*@}*/
2473
2474
2475 /**
2476 * Mesa extension stubs. These will help reduce portability problems.
2477 */
2478 /*@{*/
2479
2480 /**
2481 * Release all buffers associated with the specified GLX drawable.
2482 *
2483 * \todo
2484 * This function was intended for stand-alone Mesa. The issue there is that
2485 * the library doesn't get any notification when a window is closed. In
2486 * DRI there is a similar but slightly different issue. When GLX 1.3 is
2487 * supported, there are 3 different functions to destroy a drawable. It
2488 * should be possible to create GLX protocol (or have it determine which
2489 * protocol to use based on the type of the drawable) to have one function
2490 * do the work of 3. For the direct-rendering case, this function could
2491 * just call the driver's \c __DRIdrawableRec::destroyDrawable function.
2492 * This would reduce the frequency with which \c __driGarbageCollectDrawables
2493 * would need to be used. This really should be done as part of the new DRI
2494 * interface work.
2495 *
2496 * \sa http://oss.sgi.com/projects/ogl-sample/registry/MESA/release_buffers.txt
2497 * __driGarbageCollectDrawables
2498 * glXDestroyGLXPixmap
2499 * glXDestroyPbuffer glXDestroyPixmap glXDestroyWindow
2500 * glXDestroyGLXPbufferSGIX glXDestroyGLXVideoSourceSGIX
2501 */
2502 static Bool __glXReleaseBuffersMESA( Display *dpy, GLXDrawable d )
2503 {
2504 (void) dpy;
2505 (void) d;
2506 return False;
2507 }
2508
2509
2510 PUBLIC GLXPixmap glXCreateGLXPixmapMESA( Display *dpy, XVisualInfo *visual,
2511 Pixmap pixmap, Colormap cmap )
2512 {
2513 (void) dpy;
2514 (void) visual;
2515 (void) pixmap;
2516 (void) cmap;
2517 return 0;
2518 }
2519 /*@}*/
2520
2521
2522 /**
2523 * GLX_MESA_copy_sub_buffer
2524 */
2525 #define X_GLXvop_CopySubBufferMESA 5154 /* temporary */
2526 static void __glXCopySubBufferMESA(Display *dpy, GLXDrawable drawable,
2527 int x, int y, int width, int height)
2528 {
2529 xGLXVendorPrivateReq *req;
2530 GLXContext gc;
2531 GLXContextTag tag;
2532 CARD32 *drawable_ptr;
2533 INT32 *x_ptr, *y_ptr, *w_ptr, *h_ptr;
2534 CARD8 opcode;
2535
2536 #ifdef __DRI_COPY_SUB_BUFFER
2537 int screen;
2538 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, &screen);
2539 if ( pdraw != NULL ) {
2540 __GLXscreenConfigs * const psc = GetGLXScreenConfigs(dpy, screen);
2541 if (psc->driScreen->copySubBuffer != NULL) {
2542 glFlush();
2543 (*psc->driScreen->copySubBuffer)(pdraw, x, y, width, height);
2544 }
2545
2546 return;
2547 }
2548 #endif
2549
2550 opcode = __glXSetupForCommand(dpy);
2551 if (!opcode)
2552 return;
2553
2554 /*
2555 ** The calling thread may or may not have a current context. If it
2556 ** does, send the context tag so the server can do a flush.
2557 */
2558 gc = __glXGetCurrentContext();
2559 if ((gc != NULL) && (dpy == gc->currentDpy) &&
2560 ((drawable == gc->currentDrawable) ||
2561 (drawable == gc->currentReadable)) ) {
2562 tag = gc->currentContextTag;
2563 } else {
2564 tag = 0;
2565 }
2566
2567 LockDisplay(dpy);
2568 GetReqExtra(GLXVendorPrivate, sizeof(CARD32) + sizeof(INT32) * 4,req);
2569 req->reqType = opcode;
2570 req->glxCode = X_GLXVendorPrivate;
2571 req->vendorCode = X_GLXvop_CopySubBufferMESA;
2572 req->contextTag = tag;
2573
2574 drawable_ptr = (CARD32 *) (req + 1);
2575 x_ptr = (INT32 *) (drawable_ptr + 1);
2576 y_ptr = (INT32 *) (drawable_ptr + 2);
2577 w_ptr = (INT32 *) (drawable_ptr + 3);
2578 h_ptr = (INT32 *) (drawable_ptr + 4);
2579
2580 *drawable_ptr = drawable;
2581 *x_ptr = x;
2582 *y_ptr = y;
2583 *w_ptr = width;
2584 *h_ptr = height;
2585
2586 UnlockDisplay(dpy);
2587 SyncHandle();
2588 }
2589
2590
2591 /**
2592 * GLX_EXT_texture_from_pixmap
2593 */
2594 /*@{*/
2595 static void __glXBindTexImageEXT(Display *dpy,
2596 GLXDrawable drawable,
2597 int buffer,
2598 const int *attrib_list)
2599 {
2600 xGLXVendorPrivateReq *req;
2601 GLXContext gc = __glXGetCurrentContext();
2602 CARD32 *drawable_ptr;
2603 INT32 *buffer_ptr;
2604 CARD32 *num_attrib_ptr;
2605 CARD32 *attrib_ptr;
2606 CARD8 opcode;
2607 unsigned int i;
2608
2609 if (gc == NULL)
2610 return;
2611
2612 i = 0;
2613 if (attrib_list) {
2614 while (attrib_list[i * 2] != None)
2615 i++;
2616 }
2617
2618 #ifdef GLX_DIRECT_RENDERING
2619 if (gc->driContext) {
2620 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable, NULL);
2621
2622 if (pdraw != NULL)
2623 (*pdraw->psc->texBuffer->setTexBuffer)(gc->__driContext,
2624 pdraw->textureTarget,
2625 pdraw->driDrawable);
2626
2627 return;
2628 }
2629 #endif
2630
2631 opcode = __glXSetupForCommand(dpy);
2632 if (!opcode)
2633 return;
2634
2635 LockDisplay(dpy);
2636 GetReqExtra(GLXVendorPrivate, 12 + 8 * i,req);
2637 req->reqType = opcode;
2638 req->glxCode = X_GLXVendorPrivate;
2639 req->vendorCode = X_GLXvop_BindTexImageEXT;
2640 req->contextTag = gc->currentContextTag;
2641
2642 drawable_ptr = (CARD32 *) (req + 1);
2643 buffer_ptr = (INT32 *) (drawable_ptr + 1);
2644 num_attrib_ptr = (CARD32 *) (buffer_ptr + 1);
2645 attrib_ptr = (CARD32 *) (num_attrib_ptr + 1);
2646
2647 *drawable_ptr = drawable;
2648 *buffer_ptr = buffer;
2649 *num_attrib_ptr = (CARD32) i;
2650
2651 i = 0;
2652 if (attrib_list) {
2653 while (attrib_list[i * 2] != None)
2654 {
2655 *attrib_ptr++ = (CARD32) attrib_list[i * 2 + 0];
2656 *attrib_ptr++ = (CARD32) attrib_list[i * 2 + 1];
2657 i++;
2658 }
2659 }
2660
2661 UnlockDisplay(dpy);
2662 SyncHandle();
2663 }
2664
2665 static void __glXReleaseTexImageEXT(Display *dpy,
2666 GLXDrawable drawable,
2667 int buffer)
2668 {
2669 xGLXVendorPrivateReq *req;
2670 GLXContext gc = __glXGetCurrentContext();
2671 CARD32 *drawable_ptr;
2672 INT32 *buffer_ptr;
2673 CARD8 opcode;
2674
2675 if (gc == NULL)
2676 return;
2677
2678 #ifdef GLX_DIRECT_RENDERING
2679 if (gc->driContext)
2680 return;
2681 #endif
2682
2683 opcode = __glXSetupForCommand(dpy);
2684 if (!opcode)
2685 return;
2686
2687 LockDisplay(dpy);
2688 GetReqExtra(GLXVendorPrivate, sizeof(CARD32)+sizeof(INT32),req);
2689 req->reqType = opcode;
2690 req->glxCode = X_GLXVendorPrivate;
2691 req->vendorCode = X_GLXvop_ReleaseTexImageEXT;
2692 req->contextTag = gc->currentContextTag;
2693
2694 drawable_ptr = (CARD32 *) (req + 1);
2695 buffer_ptr = (INT32 *) (drawable_ptr + 1);
2696
2697 *drawable_ptr = drawable;
2698 *buffer_ptr = buffer;
2699
2700 UnlockDisplay(dpy);
2701 SyncHandle();
2702 }
2703 /*@}*/
2704
2705 /**
2706 * \c strdup is actually not a standard ANSI C or POSIX routine.
2707 * Irix will not define it if ANSI mode is in effect.
2708 *
2709 * \sa strdup
2710 */
2711 _X_HIDDEN char *
2712 __glXstrdup(const char *str)
2713 {
2714 char *copy;
2715 copy = (char *) Xmalloc(strlen(str) + 1);
2716 if (!copy)
2717 return NULL;
2718 strcpy(copy, str);
2719 return copy;
2720 }
2721
2722 /*
2723 ** glXGetProcAddress support
2724 */
2725
2726 struct name_address_pair {
2727 const char *Name;
2728 GLvoid *Address;
2729 };
2730
2731 #define GLX_FUNCTION(f) { # f, (GLvoid *) f }
2732 #define GLX_FUNCTION2(n,f) { # n, (GLvoid *) f }
2733
2734 static const struct name_address_pair GLX_functions[] = {
2735 /*** GLX_VERSION_1_0 ***/
2736 GLX_FUNCTION( glXChooseVisual ),
2737 GLX_FUNCTION( glXCopyContext ),
2738 GLX_FUNCTION( glXCreateContext ),
2739 GLX_FUNCTION( glXCreateGLXPixmap ),
2740 GLX_FUNCTION( glXDestroyContext ),
2741 GLX_FUNCTION( glXDestroyGLXPixmap ),
2742 GLX_FUNCTION( glXGetConfig ),
2743 GLX_FUNCTION( glXGetCurrentContext ),
2744 GLX_FUNCTION( glXGetCurrentDrawable ),
2745 GLX_FUNCTION( glXIsDirect ),
2746 GLX_FUNCTION( glXMakeCurrent ),
2747 GLX_FUNCTION( glXQueryExtension ),
2748 GLX_FUNCTION( glXQueryVersion ),
2749 GLX_FUNCTION( glXSwapBuffers ),
2750 GLX_FUNCTION( glXUseXFont ),
2751 GLX_FUNCTION( glXWaitGL ),
2752 GLX_FUNCTION( glXWaitX ),
2753
2754 /*** GLX_VERSION_1_1 ***/
2755 GLX_FUNCTION( glXGetClientString ),
2756 GLX_FUNCTION( glXQueryExtensionsString ),
2757 GLX_FUNCTION( glXQueryServerString ),
2758
2759 /*** GLX_VERSION_1_2 ***/
2760 GLX_FUNCTION( glXGetCurrentDisplay ),
2761
2762 /*** GLX_VERSION_1_3 ***/
2763 GLX_FUNCTION( glXChooseFBConfig ),
2764 GLX_FUNCTION( glXCreateNewContext ),
2765 GLX_FUNCTION( glXCreatePbuffer ),
2766 GLX_FUNCTION( glXCreatePixmap ),
2767 GLX_FUNCTION( glXCreateWindow ),
2768 GLX_FUNCTION( glXDestroyPbuffer ),
2769 GLX_FUNCTION( glXDestroyPixmap ),
2770 GLX_FUNCTION( glXDestroyWindow ),
2771 GLX_FUNCTION( glXGetCurrentReadDrawable ),
2772 GLX_FUNCTION( glXGetFBConfigAttrib ),
2773 GLX_FUNCTION( glXGetFBConfigs ),
2774 GLX_FUNCTION( glXGetSelectedEvent ),
2775 GLX_FUNCTION( glXGetVisualFromFBConfig ),
2776 GLX_FUNCTION( glXMakeContextCurrent ),
2777 GLX_FUNCTION( glXQueryContext ),
2778 GLX_FUNCTION( glXQueryDrawable ),
2779 GLX_FUNCTION( glXSelectEvent ),
2780
2781 /*** GLX_SGI_swap_control ***/
2782 GLX_FUNCTION2( glXSwapIntervalSGI, __glXSwapIntervalSGI ),
2783
2784 /*** GLX_SGI_video_sync ***/
2785 GLX_FUNCTION2( glXGetVideoSyncSGI, __glXGetVideoSyncSGI ),
2786 GLX_FUNCTION2( glXWaitVideoSyncSGI, __glXWaitVideoSyncSGI ),
2787
2788 /*** GLX_SGI_make_current_read ***/
2789 GLX_FUNCTION2( glXMakeCurrentReadSGI, glXMakeContextCurrent ),
2790 GLX_FUNCTION2( glXGetCurrentReadDrawableSGI, glXGetCurrentReadDrawable ),
2791
2792 /*** GLX_EXT_import_context ***/
2793 GLX_FUNCTION( glXFreeContextEXT ),
2794 GLX_FUNCTION( glXGetContextIDEXT ),
2795 GLX_FUNCTION2( glXGetCurrentDisplayEXT, glXGetCurrentDisplay ),
2796 GLX_FUNCTION( glXImportContextEXT ),
2797 GLX_FUNCTION2( glXQueryContextInfoEXT, glXQueryContext ),
2798
2799 /*** GLX_SGIX_fbconfig ***/
2800 GLX_FUNCTION2( glXGetFBConfigAttribSGIX, glXGetFBConfigAttrib ),
2801 GLX_FUNCTION2( glXChooseFBConfigSGIX, glXChooseFBConfig ),
2802 GLX_FUNCTION( glXCreateGLXPixmapWithConfigSGIX ),
2803 GLX_FUNCTION( glXCreateContextWithConfigSGIX ),
2804 GLX_FUNCTION2( glXGetVisualFromFBConfigSGIX, glXGetVisualFromFBConfig ),
2805 GLX_FUNCTION( glXGetFBConfigFromVisualSGIX ),
2806
2807 /*** GLX_SGIX_pbuffer ***/
2808 GLX_FUNCTION( glXCreateGLXPbufferSGIX ),
2809 GLX_FUNCTION( glXDestroyGLXPbufferSGIX ),
2810 GLX_FUNCTION( glXQueryGLXPbufferSGIX ),
2811 GLX_FUNCTION( glXSelectEventSGIX ),
2812 GLX_FUNCTION( glXGetSelectedEventSGIX ),
2813
2814 /*** GLX_SGIX_swap_group ***/
2815 GLX_FUNCTION2( glXJoinSwapGroupSGIX, __glXJoinSwapGroupSGIX ),
2816
2817 /*** GLX_SGIX_swap_barrier ***/
2818 GLX_FUNCTION2( glXBindSwapBarrierSGIX, __glXBindSwapBarrierSGIX ),
2819 GLX_FUNCTION2( glXQueryMaxSwapBarriersSGIX, __glXQueryMaxSwapBarriersSGIX ),
2820
2821 /*** GLX_MESA_allocate_memory ***/
2822 GLX_FUNCTION( glXAllocateMemoryMESA ),
2823 GLX_FUNCTION( glXFreeMemoryMESA ),
2824 GLX_FUNCTION( glXGetMemoryOffsetMESA ),
2825
2826 /*** GLX_MESA_copy_sub_buffer ***/
2827 GLX_FUNCTION2( glXCopySubBufferMESA, __glXCopySubBufferMESA ),
2828
2829 /*** GLX_MESA_pixmap_colormap ***/
2830 GLX_FUNCTION( glXCreateGLXPixmapMESA ),
2831
2832 /*** GLX_MESA_release_buffers ***/
2833 GLX_FUNCTION2( glXReleaseBuffersMESA, __glXReleaseBuffersMESA ),
2834
2835 /*** GLX_MESA_swap_control ***/
2836 GLX_FUNCTION2( glXSwapIntervalMESA, __glXSwapIntervalMESA ),
2837 GLX_FUNCTION2( glXGetSwapIntervalMESA, __glXGetSwapIntervalMESA ),
2838
2839 /*** GLX_MESA_swap_frame_usage ***/
2840 GLX_FUNCTION2( glXBeginFrameTrackingMESA, __glXBeginFrameTrackingMESA ),
2841 GLX_FUNCTION2( glXEndFrameTrackingMESA, __glXEndFrameTrackingMESA ),
2842 GLX_FUNCTION2( glXGetFrameUsageMESA, __glXGetFrameUsageMESA ),
2843 GLX_FUNCTION2( glXQueryFrameTrackingMESA, __glXQueryFrameTrackingMESA ),
2844
2845 /*** GLX_ARB_get_proc_address ***/
2846 GLX_FUNCTION( glXGetProcAddressARB ),
2847
2848 /*** GLX 1.4 ***/
2849 GLX_FUNCTION2( glXGetProcAddress, glXGetProcAddressARB ),
2850
2851 /*** GLX_OML_sync_control ***/
2852 GLX_FUNCTION2( glXWaitForSbcOML, __glXWaitForSbcOML ),
2853 GLX_FUNCTION2( glXWaitForMscOML, __glXWaitForMscOML ),
2854 GLX_FUNCTION2( glXSwapBuffersMscOML, __glXSwapBuffersMscOML ),
2855 GLX_FUNCTION2( glXGetMscRateOML, __glXGetMscRateOML ),
2856 GLX_FUNCTION2( glXGetSyncValuesOML, __glXGetSyncValuesOML ),
2857
2858 /*** GLX_EXT_texture_from_pixmap ***/
2859 GLX_FUNCTION2( glXBindTexImageEXT, __glXBindTexImageEXT ),
2860 GLX_FUNCTION2( glXReleaseTexImageEXT, __glXReleaseTexImageEXT ),
2861
2862 #ifdef GLX_DIRECT_RENDERING
2863 /*** DRI configuration ***/
2864 GLX_FUNCTION( glXGetScreenDriver ),
2865 GLX_FUNCTION( glXGetDriverConfig ),
2866 #endif
2867
2868 { NULL, NULL } /* end of list */
2869 };
2870
2871
2872 static const GLvoid *
2873 get_glx_proc_address(const char *funcName)
2874 {
2875 GLuint i;
2876
2877 /* try static functions */
2878 for (i = 0; GLX_functions[i].Name; i++) {
2879 if (strcmp(GLX_functions[i].Name, funcName) == 0)
2880 return GLX_functions[i].Address;
2881 }
2882
2883 return NULL;
2884 }
2885
2886
2887 /**
2888 * Get the address of a named GL function. This is the pre-GLX 1.4 name for
2889 * \c glXGetProcAddress.
2890 *
2891 * \param procName Name of a GL or GLX function.
2892 * \returns A pointer to the named function
2893 *
2894 * \sa glXGetProcAddress
2895 */
2896 PUBLIC void (*glXGetProcAddressARB(const GLubyte *procName))( void )
2897 {
2898 typedef void (*gl_function)( void );
2899 gl_function f;
2900
2901
2902 /* Search the table of GLX and internal functions first. If that
2903 * fails and the supplied name could be a valid core GL name, try
2904 * searching the core GL function table. This check is done to prevent
2905 * DRI based drivers from searching the core GL function table for
2906 * internal API functions.
2907 */
2908
2909 f = (gl_function) get_glx_proc_address((const char *) procName);
2910 if ( (f == NULL) && (procName[0] == 'g') && (procName[1] == 'l')
2911 && (procName[2] != 'X') ) {
2912 f = (gl_function) _glapi_get_proc_address((const char *) procName);
2913 }
2914
2915 return f;
2916 }
2917
2918 /**
2919 * Get the address of a named GL function. This is the GLX 1.4 name for
2920 * \c glXGetProcAddressARB.
2921 *
2922 * \param procName Name of a GL or GLX function.
2923 * \returns A pointer to the named function
2924 *
2925 * \sa glXGetProcAddressARB
2926 */
2927 PUBLIC void (*glXGetProcAddress(const GLubyte *procName))( void )
2928 #if defined(__GNUC__) && !defined(GLX_ALIAS_UNSUPPORTED)
2929 __attribute__ ((alias ("glXGetProcAddressARB")));
2930 #else
2931 {
2932 return glXGetProcAddressARB(procName);
2933 }
2934 #endif /* __GNUC__ */
2935
2936
2937 #ifdef GLX_DIRECT_RENDERING
2938 /**
2939 * Get the unadjusted system time (UST). Currently, the UST is measured in
2940 * microseconds since Epoc. The actual resolution of the UST may vary from
2941 * system to system, and the units may vary from release to release.
2942 * Drivers should not call this function directly. They should instead use
2943 * \c glXGetProcAddress to obtain a pointer to the function.
2944 *
2945 * \param ust Location to store the 64-bit UST
2946 * \returns Zero on success or a negative errno value on failure.
2947 *
2948 * \sa glXGetProcAddress, PFNGLXGETUSTPROC
2949 *
2950 * \since Internal API version 20030317.
2951 */
2952 _X_HIDDEN int __glXGetUST( int64_t * ust )
2953 {
2954 struct timeval tv;
2955
2956 if ( ust == NULL ) {
2957 return -EFAULT;
2958 }
2959
2960 if ( gettimeofday( & tv, NULL ) == 0 ) {
2961 ust[0] = (tv.tv_sec * 1000000) + tv.tv_usec;
2962 return 0;
2963 } else {
2964 return -errno;
2965 }
2966 }
2967 #endif /* GLX_DIRECT_RENDERING */