Enable client-side GLX support for texture compression extensions.
[mesa.git] / src / glx / x11 / glxext.c
1 /* $XFree86: xc/lib/GL/glx/glxext.c,v 1.22 2003/12/08 17:35:28 dawes Exp $ */
2
3 /*
4 ** License Applicability. Except to the extent portions of this file are
5 ** made subject to an alternative license as permitted in the SGI Free
6 ** Software License B, Version 1.1 (the "License"), the contents of this
7 ** file are subject only to the provisions of the License. You may not use
8 ** this file except in compliance with the License. You may obtain a copy
9 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
10 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
11 **
12 ** http://oss.sgi.com/projects/FreeB
13 **
14 ** Note that, as provided in the License, the Software is distributed on an
15 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
16 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
17 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
18 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
19 **
20 ** Original Code. The Original Code is: OpenGL Sample Implementation,
21 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
22 ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
23 ** Copyright in any portions created by third parties is as indicated
24 ** elsewhere herein. All Rights Reserved.
25 **
26 ** Additional Notice Provisions: The application programming interfaces
27 ** established by SGI in conjunction with the Original Code are The
28 ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
29 ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
30 ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
31 ** Window System(R) (Version 1.3), released October 19, 1998. This software
32 ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
33 ** published by SGI, but has not been independently verified as being
34 ** compliant with the OpenGL(R) version 1.2.1 Specification.
35 **
36 */
37
38 /**
39 * \file glxext.c
40 * GLX protocol interface boot-strap code.
41 *
42 * Direct rendering support added by Precision Insight, Inc.
43 *
44 * \author Kevin E. Martin <kevin@precisioninsight.com>
45 */
46
47 #include "glxclient.h"
48 #include <stdio.h>
49 #include <Xext.h>
50 #include <extutil.h>
51 #include <assert.h>
52 #include "indirect_init.h"
53 #include "glapi.h"
54 #ifdef XTHREADS
55 #include "Xthreads.h"
56 #endif
57 #include "glxextensions.h"
58 #include "glcontextmodes.h"
59 #include "glheader.h"
60
61 #ifdef GLX_DIRECT_RENDERING
62 #include <inttypes.h>
63 #include <sys/mman.h>
64 #include "xf86dri.h"
65 #include "sarea.h"
66 #include "dri_glx.h"
67 #endif
68
69 #include <assert.h>
70
71 #ifdef DEBUG
72 void __glXDumpDrawBuffer(__GLXcontext *ctx);
73 #endif
74
75 #ifdef USE_SPARC_ASM
76 /*
77 * This is where our dispatch table's bounds are.
78 * And the static mesa_init is taken directly from
79 * Mesa's 'sparc.c' initializer.
80 *
81 * We need something like this here, because this version
82 * of openGL/glx never initializes a Mesa context, and so
83 * the address of the dispatch table pointer never gets stuffed
84 * into the dispatch jump table otherwise.
85 *
86 * It matters only on SPARC, and only if you are using assembler
87 * code instead of C-code indirect dispatch.
88 *
89 * -- FEM, 04.xii.03
90 */
91 extern unsigned int _mesa_sparc_glapi_begin;
92 extern unsigned int _mesa_sparc_glapi_end;
93 extern void __glapi_sparc_icache_flush(unsigned int *);
94 static void _glx_mesa_init_sparc_glapi_relocs(void);
95 static int _mesa_sparc_needs_init = 1;
96 #define INIT_MESA_SPARC { \
97 if(_mesa_sparc_needs_init) { \
98 _glx_mesa_init_sparc_glapi_relocs(); \
99 _mesa_sparc_needs_init = 0; \
100 } \
101 }
102 #else
103 #define INIT_MESA_SPARC
104 #endif
105
106 static Bool MakeContextCurrent(Display *dpy, GLXDrawable draw,
107 GLXDrawable read, GLXContext gc);
108
109 /*
110 ** We setup some dummy structures here so that the API can be used
111 ** even if no context is current.
112 */
113
114 static GLubyte dummyBuffer[__GLX_BUFFER_LIMIT_SIZE];
115
116 /*
117 ** Dummy context used by small commands when there is no current context.
118 ** All the
119 ** gl and glx entry points are designed to operate as nop's when using
120 ** the dummy context structure.
121 */
122 static __GLXcontext dummyContext = {
123 &dummyBuffer[0],
124 &dummyBuffer[0],
125 &dummyBuffer[0],
126 &dummyBuffer[__GLX_BUFFER_LIMIT_SIZE],
127 sizeof(dummyBuffer),
128 };
129
130
131 /*
132 ** All indirect rendering contexts will share the same indirect dispatch table.
133 */
134 static __GLapi *IndirectAPI = NULL;
135
136
137 /*
138 * Current context management and locking
139 */
140
141 #if defined(GLX_DIRECT_RENDERING) && defined(XTHREADS)
142
143 /* thread safe */
144 static GLboolean TSDinitialized = GL_FALSE;
145 static xthread_key_t ContextTSD;
146
147 __GLXcontext *__glXGetCurrentContext(void)
148 {
149 if (!TSDinitialized) {
150 xthread_key_create(&ContextTSD, NULL);
151 TSDinitialized = GL_TRUE;
152 return &dummyContext;
153 }
154 else {
155 void *p;
156 xthread_get_specific(ContextTSD, &p);
157 if (!p)
158 return &dummyContext;
159 else
160 return (__GLXcontext *) p;
161 }
162 }
163
164 void __glXSetCurrentContext(__GLXcontext *c)
165 {
166 if (!TSDinitialized) {
167 xthread_key_create(&ContextTSD, NULL);
168 TSDinitialized = GL_TRUE;
169 }
170 xthread_set_specific(ContextTSD, c);
171 }
172
173
174 /* Used by the __glXLock() and __glXUnlock() macros */
175 xmutex_rec __glXmutex;
176
177 #else
178
179 /* not thread safe */
180 __GLXcontext *__glXcurrentContext = &dummyContext;
181
182 #endif
183
184
185 /*
186 ** You can set this cell to 1 to force the gl drawing stuff to be
187 ** one command per packet
188 */
189 int __glXDebug = 0;
190
191 /*
192 ** forward prototype declarations
193 */
194 int __glXCloseDisplay(Display *dpy, XExtCodes *codes);
195
196 static GLboolean FillInVisuals( __GLXscreenConfigs * psc );
197
198 /************************************************************************/
199
200 /* Extension required boiler plate */
201
202 static char *__glXExtensionName = GLX_EXTENSION_NAME;
203 XExtensionInfo *__glXExtensionInfo = NULL;
204
205 static /* const */ char *error_list[] = {
206 "GLXBadContext",
207 "GLXBadContextState",
208 "GLXBadDrawable",
209 "GLXBadPixmap",
210 "GLXBadContextTag",
211 "GLXBadCurrentWindow",
212 "GLXBadRenderRequest",
213 "GLXBadLargeRequest",
214 "GLXUnsupportedPrivateRequest",
215 };
216
217 int __glXCloseDisplay(Display *dpy, XExtCodes *codes)
218 {
219 GLXContext gc;
220
221 gc = __glXGetCurrentContext();
222 if (dpy == gc->currentDpy) {
223 __glXSetCurrentContext(&dummyContext);
224 #ifdef GLX_DIRECT_RENDERING
225 _glapi_set_dispatch(NULL); /* no-op functions */
226 #endif
227 __glXFreeContext(gc);
228 }
229
230 return XextRemoveDisplay(__glXExtensionInfo, dpy);
231 }
232
233
234 static XEXT_GENERATE_ERROR_STRING(__glXErrorString, __glXExtensionName,
235 __GLX_NUMBER_ERRORS, error_list)
236
237 static /* const */ XExtensionHooks __glXExtensionHooks = {
238 NULL, /* create_gc */
239 NULL, /* copy_gc */
240 NULL, /* flush_gc */
241 NULL, /* free_gc */
242 NULL, /* create_font */
243 NULL, /* free_font */
244 __glXCloseDisplay, /* close_display */
245 NULL, /* wire_to_event */
246 NULL, /* event_to_wire */
247 NULL, /* error */
248 __glXErrorString, /* error_string */
249 };
250
251 static
252 XEXT_GENERATE_FIND_DISPLAY(__glXFindDisplay, __glXExtensionInfo,
253 __glXExtensionName, &__glXExtensionHooks,
254 __GLX_NUMBER_EVENTS, NULL)
255
256 /************************************************************************/
257
258 /*
259 ** Free the per screen configs data as well as the array of
260 ** __glXScreenConfigs.
261 */
262 static void FreeScreenConfigs(__GLXdisplayPrivate *priv)
263 {
264 __GLXscreenConfigs *psc;
265 GLint i, screens;
266
267 /* Free screen configuration information */
268 psc = priv->screenConfigs;
269 screens = ScreenCount(priv->dpy);
270 for (i = 0; i < screens; i++, psc++) {
271 if (psc->configs) {
272 _gl_context_modes_destroy( psc->configs );
273 if(psc->effectiveGLXexts)
274 Xfree(psc->effectiveGLXexts);
275
276 if ( psc->old_configs != NULL ) {
277 Xfree( psc->old_configs );
278 psc->old_configs = NULL;
279 psc->numOldConfigs = 0;
280 }
281
282 psc->configs = NULL; /* NOTE: just for paranoia */
283 }
284
285 #ifdef GLX_DIRECT_RENDERING
286 /* Free the direct rendering per screen data */
287 if (psc->driScreen.private)
288 (*psc->driScreen.destroyScreen)(priv->dpy, i,
289 psc->driScreen.private);
290 psc->driScreen.private = NULL;
291 #endif
292 }
293 XFree((char*) priv->screenConfigs);
294 }
295
296 /*
297 ** Release the private memory referred to in a display private
298 ** structure. The caller will free the extension structure.
299 */
300 static int __glXFreeDisplayPrivate(XExtData *extension)
301 {
302 __GLXdisplayPrivate *priv;
303
304 priv = (__GLXdisplayPrivate*) extension->private_data;
305 FreeScreenConfigs(priv);
306 if(priv->serverGLXvendor) {
307 Xfree((char*)priv->serverGLXvendor);
308 priv->serverGLXvendor = 0x0; /* to protect against double free's */
309 }
310 if(priv->serverGLXversion) {
311 Xfree((char*)priv->serverGLXversion);
312 priv->serverGLXversion = 0x0; /* to protect against double free's */
313 }
314
315 #if 0 /* GLX_DIRECT_RENDERING */
316 /* Free the direct rendering per display data */
317 if (priv->driDisplay.private)
318 (*priv->driDisplay.destroyDisplay)(priv->dpy,
319 priv->driDisplay.private);
320 priv->driDisplay.private = NULL;
321 #endif
322
323 #ifdef GLX_DIRECT_RENDERING
324 XFree(priv->driDisplay.createScreen);
325 #endif
326
327 Xfree((char*) priv);
328 return 0;
329 }
330
331 /************************************************************************/
332
333 /*
334 ** Query the version of the GLX extension. This procedure works even if
335 ** the client extension is not completely set up.
336 */
337 static Bool QueryVersion(Display *dpy, int opcode, int *major, int *minor)
338 {
339 xGLXQueryVersionReq *req;
340 xGLXQueryVersionReply reply;
341
342 /* Send the glXQueryVersion request */
343 LockDisplay(dpy);
344 GetReq(GLXQueryVersion,req);
345 req->reqType = opcode;
346 req->glxCode = X_GLXQueryVersion;
347 req->majorVersion = GLX_MAJOR_VERSION;
348 req->minorVersion = GLX_MINOR_VERSION;
349 _XReply(dpy, (xReply*) &reply, 0, False);
350 UnlockDisplay(dpy);
351 SyncHandle();
352
353 if (reply.majorVersion != GLX_MAJOR_VERSION) {
354 /*
355 ** The server does not support the same major release as this
356 ** client.
357 */
358 return GL_FALSE;
359 }
360 *major = reply.majorVersion;
361 *minor = min(reply.minorVersion, GLX_MINOR_VERSION);
362 return GL_TRUE;
363 }
364
365
366 /**
367 * Determine if a \c __GLcontextModes structure has the right mojo to be
368 * converted to a \c __GLXvisualConfig to be sent to an "old" style DRI
369 * driver.
370 */
371 #define MODE_HAS_MOJO(m) \
372 ((m)->visualID != GLX_DONT_CARE) \
373 && ((m)->sampleBuffers == 0) \
374 && ((m)->samples == 0) \
375 && (((m)->drawableType & GLX_WINDOW_BIT) != 0) \
376 && (((m)->xRenderable == GL_TRUE) \
377 || ((m)->xRenderable == GLX_DONT_CARE))
378
379
380 /**
381 * Convert the FBConfigs associated with a screen into an array of
382 * \c __GLXvisualConfig structures. These structures are passed into DRI
383 * drivers that use the "old" interface. The old-style drivers had a fairly
384 * strict set of visual types that could be supported. FBConfigs that
385 * cannot be supported are not converted.
386 *
387 * \param psc Screen whose FBConfigs need to be swizzled.
388 *
389 * \returns
390 * If memory could be allocated and at least one FBConfig could be converted
391 * to a \c __GLXvisualConfig structure, \c GL_TRUE is returned. Otherwise,
392 * \c GL_FALSE is returned.
393 *
394 * \todo
395 * When the old DRI driver interface is no longer supported, this function
396 * can be removed.
397 */
398 static GLboolean
399 FillInVisuals( __GLXscreenConfigs * psc )
400 {
401 __GLcontextModes *modes;
402 int glx_visual_count;
403
404
405 glx_visual_count = 0;
406 for ( modes = psc->configs ; modes != NULL ; modes = modes->next ) {
407 if ( MODE_HAS_MOJO( modes ) ) {
408 glx_visual_count++;
409 }
410 }
411
412 psc->old_configs = (__GLXvisualConfig *)
413 Xmalloc( sizeof( __GLXvisualConfig ) * glx_visual_count );
414 if ( psc->old_configs == NULL ) {
415 return GL_FALSE;
416 }
417
418 glx_visual_count = 0;
419 for ( modes = psc->configs ; modes != NULL ; modes = modes->next ) {
420 if ( MODE_HAS_MOJO( modes ) ) {
421
422 #define COPY_VALUE(src_tag,dst_tag) \
423 psc->old_configs[glx_visual_count]. dst_tag = modes-> src_tag
424
425 COPY_VALUE( visualID, vid );
426 COPY_VALUE( rgbMode, rgba );
427 COPY_VALUE( stereoMode, stereo );
428 COPY_VALUE( doubleBufferMode, doubleBuffer );
429
430 psc->old_configs[glx_visual_count].class =
431 _gl_convert_to_x_visual_type( modes->visualType );
432
433 COPY_VALUE( level, level );
434 COPY_VALUE( numAuxBuffers, auxBuffers );
435
436 COPY_VALUE( redBits, redSize );
437 COPY_VALUE( greenBits, greenSize );
438 COPY_VALUE( blueBits, blueSize );
439 COPY_VALUE( alphaBits, alphaSize );
440 COPY_VALUE( rgbBits, bufferSize );
441 COPY_VALUE( accumRedBits, accumRedSize );
442 COPY_VALUE( accumGreenBits, accumGreenSize );
443 COPY_VALUE( accumBlueBits, accumBlueSize );
444 COPY_VALUE( accumAlphaBits, accumAlphaSize );
445 COPY_VALUE( depthBits, depthSize );
446 COPY_VALUE( stencilBits, stencilSize );
447
448 COPY_VALUE( visualRating, visualRating );
449 COPY_VALUE( transparentPixel, transparentPixel );
450 COPY_VALUE( transparentRed, transparentRed );
451 COPY_VALUE( transparentGreen, transparentGreen );
452 COPY_VALUE( transparentBlue, transparentBlue );
453 COPY_VALUE( transparentAlpha, transparentAlpha );
454 COPY_VALUE( transparentIndex, transparentIndex );
455
456 #undef COPY_VALUE
457
458 glx_visual_count++;
459 }
460 }
461
462 psc->numOldConfigs = glx_visual_count;
463 if ( glx_visual_count == 0 ) {
464 Xfree( psc->old_configs );
465 psc->old_configs = NULL;
466 }
467
468 return (glx_visual_count != 0);
469 }
470
471
472 void
473 __glXInitializeVisualConfigFromTags( __GLcontextModes *config, int count,
474 const INT32 *bp, Bool tagged_only,
475 Bool fbconfig_style_tags )
476 {
477 int i;
478
479 if (!tagged_only) {
480 /* Copy in the first set of properties */
481 config->visualID = *bp++;
482
483 config->visualType = _gl_convert_from_x_visual_type( *bp++ );
484
485 config->rgbMode = *bp++;
486
487 config->redBits = *bp++;
488 config->greenBits = *bp++;
489 config->blueBits = *bp++;
490 config->alphaBits = *bp++;
491 config->accumRedBits = *bp++;
492 config->accumGreenBits = *bp++;
493 config->accumBlueBits = *bp++;
494 config->accumAlphaBits = *bp++;
495
496 config->doubleBufferMode = *bp++;
497 config->stereoMode = *bp++;
498
499 config->rgbBits = *bp++;
500 config->depthBits = *bp++;
501 config->stencilBits = *bp++;
502 config->numAuxBuffers = *bp++;
503 config->level = *bp++;
504
505 count -= __GLX_MIN_CONFIG_PROPS;
506 }
507
508 /*
509 ** Additional properties may be in a list at the end
510 ** of the reply. They are in pairs of property type
511 ** and property value.
512 */
513
514 #define FETCH_OR_SET(tag) \
515 config-> tag = ( fbconfig_style_tags ) ? *bp++ : 1
516
517 for (i = 0; i < count; i += 2 ) {
518 switch(*bp++) {
519 case GLX_RGBA:
520 FETCH_OR_SET( rgbMode );
521 break;
522 case GLX_BUFFER_SIZE:
523 config->rgbBits = *bp++;
524 break;
525 case GLX_LEVEL:
526 config->level = *bp++;
527 break;
528 case GLX_DOUBLEBUFFER:
529 FETCH_OR_SET( doubleBufferMode );
530 break;
531 case GLX_STEREO:
532 FETCH_OR_SET( stereoMode );
533 break;
534 case GLX_AUX_BUFFERS:
535 config->numAuxBuffers = *bp++;
536 break;
537 case GLX_RED_SIZE:
538 config->redBits = *bp++;
539 break;
540 case GLX_GREEN_SIZE:
541 config->greenBits = *bp++;
542 break;
543 case GLX_BLUE_SIZE:
544 config->blueBits = *bp++;
545 break;
546 case GLX_ALPHA_SIZE:
547 config->alphaBits = *bp++;
548 break;
549 case GLX_DEPTH_SIZE:
550 config->depthBits = *bp++;
551 break;
552 case GLX_STENCIL_SIZE:
553 config->stencilBits = *bp++;
554 break;
555 case GLX_ACCUM_RED_SIZE:
556 config->accumRedBits = *bp++;
557 break;
558 case GLX_ACCUM_GREEN_SIZE:
559 config->accumGreenBits = *bp++;
560 break;
561 case GLX_ACCUM_BLUE_SIZE:
562 config->accumBlueBits = *bp++;
563 break;
564 case GLX_ACCUM_ALPHA_SIZE:
565 config->accumAlphaBits = *bp++;
566 break;
567 case GLX_VISUAL_CAVEAT_EXT:
568 config->visualRating = *bp++;
569 break;
570 case GLX_X_VISUAL_TYPE:
571 config->visualType = *bp++;
572 break;
573 case GLX_TRANSPARENT_TYPE:
574 config->transparentPixel = *bp++;
575 break;
576 case GLX_TRANSPARENT_INDEX_VALUE:
577 config->transparentIndex = *bp++;
578 break;
579 case GLX_TRANSPARENT_RED_VALUE:
580 config->transparentRed = *bp++;
581 break;
582 case GLX_TRANSPARENT_GREEN_VALUE:
583 config->transparentGreen = *bp++;
584 break;
585 case GLX_TRANSPARENT_BLUE_VALUE:
586 config->transparentBlue = *bp++;
587 break;
588 case GLX_TRANSPARENT_ALPHA_VALUE:
589 config->transparentAlpha = *bp++;
590 break;
591 case GLX_VISUAL_ID:
592 config->visualID = *bp++;
593 break;
594 case GLX_DRAWABLE_TYPE:
595 config->drawableType = *bp++;
596 break;
597 case GLX_RENDER_TYPE:
598 config->renderType = *bp++;
599 break;
600 case GLX_X_RENDERABLE:
601 config->xRenderable = *bp++;
602 break;
603 case GLX_FBCONFIG_ID:
604 config->fbconfigID = *bp++;
605 break;
606 case GLX_MAX_PBUFFER_WIDTH:
607 config->maxPbufferWidth = *bp++;
608 break;
609 case GLX_MAX_PBUFFER_HEIGHT:
610 config->maxPbufferHeight = *bp++;
611 break;
612 case GLX_MAX_PBUFFER_PIXELS:
613 config->maxPbufferPixels = *bp++;
614 break;
615 case GLX_OPTIMAL_PBUFFER_WIDTH_SGIX:
616 config->optimalPbufferWidth = *bp++;
617 break;
618 case GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX:
619 config->optimalPbufferHeight = *bp++;
620 break;
621 case GLX_VISUAL_SELECT_GROUP_SGIX:
622 config->visualSelectGroup = *bp++;
623 break;
624 case GLX_SWAP_METHOD_OML:
625 config->swapMethod = *bp++;
626 break;
627 case GLX_SAMPLE_BUFFERS_SGIS:
628 config->sampleBuffers = *bp++;
629 break;
630 case GLX_SAMPLES_SGIS:
631 config->samples = *bp++;
632 break;
633 case None:
634 i = count;
635 break;
636 default:
637 break;
638 }
639 }
640
641 config->renderType = (config->rgbMode) ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
642
643 config->haveAccumBuffer = ((config->accumRedBits +
644 config->accumGreenBits +
645 config->accumBlueBits +
646 config->accumAlphaBits) > 0);
647 config->haveDepthBuffer = (config->depthBits > 0);
648 config->haveStencilBuffer = (config->stencilBits > 0);
649 }
650
651
652 #ifdef GLX_DIRECT_RENDERING
653 static unsigned
654 filter_modes( __GLcontextModes ** server_modes,
655 const __GLcontextModes * driver_modes )
656 {
657 __GLcontextModes * m;
658 __GLcontextModes ** prev_next;
659 const __GLcontextModes * check;
660 unsigned modes_count = 0;
661
662 if ( driver_modes == NULL ) {
663 fprintf(stderr, "libGL warning: 3D driver returned no fbconfigs.\n");
664 return 0;
665 }
666
667 /* For each mode in server_modes, check to see if a matching mode exists
668 * in driver_modes. If not, then the mode is not available.
669 */
670
671 prev_next = server_modes;
672 for ( m = *prev_next ; m != NULL ; m = *prev_next ) {
673 GLboolean do_delete = GL_TRUE;
674
675 for ( check = driver_modes ; check != NULL ; check = check->next ) {
676 if ( _gl_context_modes_are_same( m, check ) ) {
677 do_delete = GL_FALSE;
678 break;
679 }
680 }
681
682 /* The 3D has to support all the modes that match the GLX visuals
683 * sent from the X server.
684 */
685 if ( do_delete && (m->visualID != 0) ) {
686 do_delete = GL_FALSE;
687
688 fprintf(stderr, "libGL warning: 3D driver claims to not support "
689 "visual 0x%02x\n", m->visualID);
690 }
691
692 if ( do_delete ) {
693 *prev_next = m->next;
694
695 m->next = NULL;
696 _gl_context_modes_destroy( m );
697 }
698 else {
699 modes_count++;
700 prev_next = & m->next;
701 }
702 }
703
704 return modes_count;
705 }
706
707
708
709 /**
710 * Perform the required libGL-side initialization and call the client-side
711 * driver's \c __driCreateNewScreen function.
712 *
713 * \param dpy Display pointer.
714 * \param scrn Screen number on the display.
715 * \param psc DRI screen information.
716 * \param driDpy DRI display information.
717 * \param createNewScreen Pointer to the client-side driver's
718 * \c __driCreateNewScreen function.
719 * \returns A pointer to the \c __DRIscreenPrivate structure returned by
720 * the client-side driver on success, or \c NULL on failure.
721 *
722 * \todo This function needs to be modified to remove context-modes from the
723 * list stored in the \c __GLXscreenConfigsRec to match the list
724 * returned by the client-side driver.
725 */
726 static void *
727 CallCreateNewScreen(Display *dpy, int scrn, __DRIscreen *psc,
728 __DRIdisplay * driDpy,
729 CreateNewScreenFunc createNewScreen)
730 {
731 __DRIscreenPrivate *psp = NULL;
732 #ifndef GLX_USE_APPLEGL
733 drm_handle_t hSAREA;
734 drmAddress pSAREA;
735 char *BusID;
736 __DRIversion ddx_version;
737 __DRIversion dri_version;
738 __DRIversion drm_version;
739 __DRIframebuffer framebuffer;
740 int fd = -1;
741 int status;
742 const char * err_msg;
743 const char * err_extra;
744 int api_ver = __glXGetInternalVersion();
745
746
747 dri_version.major = driDpy->private->driMajor;
748 dri_version.minor = driDpy->private->driMinor;
749 dri_version.patch = driDpy->private->driPatch;
750
751
752 err_msg = "XF86DRIOpenConnection";
753 err_extra = NULL;
754
755 framebuffer.dev_priv = NULL;
756
757 if (XF86DRIOpenConnection(dpy, scrn, &hSAREA, &BusID)) {
758 fd = drmOpen(NULL,BusID);
759 Xfree(BusID); /* No longer needed */
760
761 err_msg = "open DRM";
762 err_extra = strerror( -fd );
763
764 if (fd >= 0) {
765 drm_magic_t magic;
766
767 err_msg = "drmGetMagic";
768 err_extra = NULL;
769
770 if (!drmGetMagic(fd, &magic)) {
771 drmVersionPtr version = drmGetVersion(fd);
772 if (version) {
773 drm_version.major = version->version_major;
774 drm_version.minor = version->version_minor;
775 drm_version.patch = version->version_patchlevel;
776 drmFreeVersion(version);
777 }
778 else {
779 drm_version.major = -1;
780 drm_version.minor = -1;
781 drm_version.patch = -1;
782 }
783
784 err_msg = "XF86DRIAuthConnection";
785 if (XF86DRIAuthConnection(dpy, scrn, magic)) {
786 char *driverName;
787
788 /*
789 * Get device name (like "tdfx") and the ddx version numbers.
790 * We'll check the version in each DRI driver's "createScreen"
791 * function.
792 */
793 err_msg = "XF86DRIGetClientDriverName";
794 if (XF86DRIGetClientDriverName(dpy, scrn,
795 &ddx_version.major,
796 &ddx_version.minor,
797 &ddx_version.patch,
798 &driverName)) {
799 drm_handle_t hFB;
800 int junk;
801
802 /* No longer needed. */
803 Xfree( driverName );
804
805
806 /*
807 * Get device-specific info. pDevPriv will point to a struct
808 * (such as DRIRADEONRec in xfree86/driver/ati/radeon_dri.h)
809 * that has information about the screen size, depth, pitch,
810 * ancilliary buffers, DRM mmap handles, etc.
811 */
812 err_msg = "XF86DRIGetDeviceInfo";
813 if (XF86DRIGetDeviceInfo(dpy, scrn,
814 &hFB,
815 &junk,
816 &framebuffer.size,
817 &framebuffer.stride,
818 &framebuffer.dev_priv_size,
819 &framebuffer.dev_priv)) {
820 framebuffer.width = DisplayWidth(dpy, scrn);
821 framebuffer.height = DisplayHeight(dpy, scrn);
822
823 /*
824 * Map the framebuffer region.
825 */
826 status = drmMap(fd, hFB, framebuffer.size,
827 (drmAddressPtr)&framebuffer.base);
828
829 err_msg = "drmMap of framebuffer";
830 err_extra = strerror( -status );
831
832 if ( status == 0 ) {
833 /*
834 * Map the SAREA region. Further mmap regions may be setup in
835 * each DRI driver's "createScreen" function.
836 */
837 status = drmMap(fd, hSAREA, SAREA_MAX,
838 &pSAREA);
839
840 err_msg = "drmMap of sarea";
841 err_extra = strerror( -status );
842
843 if ( status == 0 ) {
844 __GLcontextModes * driver_modes = NULL;
845 __GLXscreenConfigs *configs = psc->screenConfigs;
846
847 err_msg = "InitDriver";
848 err_extra = NULL;
849 psp = (*createNewScreen)(dpy, scrn,
850 psc,
851 configs->configs,
852 & ddx_version,
853 & dri_version,
854 & drm_version,
855 & framebuffer,
856 pSAREA,
857 fd,
858 api_ver,
859 & driver_modes );
860
861 filter_modes( & configs->configs,
862 driver_modes );
863 _gl_context_modes_destroy( driver_modes );
864 }
865 }
866 }
867 }
868 }
869 }
870 }
871 }
872
873 if ( psp == NULL ) {
874 if ( pSAREA != MAP_FAILED ) {
875 (void)drmUnmap(pSAREA, SAREA_MAX);
876 }
877
878 if ( framebuffer.base != MAP_FAILED ) {
879 (void)drmUnmap((drmAddress)framebuffer.base, framebuffer.size);
880 }
881
882 if ( framebuffer.dev_priv != NULL ) {
883 Xfree(framebuffer.dev_priv);
884 }
885
886 if ( fd >= 0 ) {
887 (void)drmClose(fd);
888 }
889
890 (void)XF86DRICloseConnection(dpy, scrn);
891
892 if ( err_extra != NULL ) {
893 fprintf(stderr, "libGL error: %s failed (%s)\n", err_msg,
894 err_extra);
895 }
896 else {
897 fprintf(stderr, "libGL error: %s failed\n", err_msg );
898 }
899
900 fprintf(stderr, "libGL error: reverting to (slow) indirect rendering\n");
901 }
902 #endif /* !GLX_USE_APPLEGL */
903
904 return psp;
905 }
906 #endif /* GLX_DIRECT_RENDERING */
907
908
909 /*
910 ** Allocate the memory for the per screen configs for each screen.
911 ** If that works then fetch the per screen configs data.
912 */
913 static Bool AllocAndFetchScreenConfigs(Display *dpy, __GLXdisplayPrivate *priv)
914 {
915 xGLXGetVisualConfigsReq *req;
916 xGLXGetFBConfigsReq *fb_req;
917 xGLXVendorPrivateWithReplyReq *vpreq;
918 xGLXGetFBConfigsSGIXReq *sgi_req;
919 xGLXGetVisualConfigsReply reply;
920 __GLXscreenConfigs *psc;
921 __GLcontextModes *config;
922 GLint i, j, nprops, screens;
923 INT32 buf[__GLX_TOTAL_CONFIG], *props;
924 unsigned supported_request = 0;
925 unsigned prop_size;
926
927 /*
928 ** First allocate memory for the array of per screen configs.
929 */
930 screens = ScreenCount(dpy);
931 psc = (__GLXscreenConfigs*) Xmalloc(screens * sizeof(__GLXscreenConfigs));
932 if (!psc) {
933 return GL_FALSE;
934 }
935 memset(psc, 0, screens * sizeof(__GLXscreenConfigs));
936 priv->screenConfigs = psc;
937
938 priv->serverGLXversion = __glXGetStringFromServer(dpy, priv->majorOpcode,
939 X_GLXQueryServerString,
940 0, GLX_VERSION);
941 if ( priv->serverGLXversion == NULL ) {
942 FreeScreenConfigs(priv);
943 return GL_FALSE;
944 }
945
946 if ( atof( priv->serverGLXversion ) >= 1.3 ) {
947 supported_request = 1;
948 }
949
950 /*
951 ** Now fetch each screens configs structures. If a screen supports
952 ** GL (by returning a numVisuals > 0) then allocate memory for our
953 ** config structure and then fill it in.
954 */
955 for (i = 0; i < screens; i++, psc++) {
956 if ( supported_request != 1 ) {
957 psc->serverGLXexts = __glXGetStringFromServer(dpy, priv->majorOpcode,
958 X_GLXQueryServerString,
959 i, GLX_EXTENSIONS);
960 if ( strstr( psc->serverGLXexts, "GLX_SGIX_fbconfig" ) != NULL ) {
961 supported_request = 2;
962 }
963 else {
964 supported_request = 3;
965 }
966 }
967
968
969 LockDisplay(dpy);
970 switch( supported_request ) {
971 case 1:
972 GetReq(GLXGetFBConfigs,fb_req);
973 fb_req->reqType = priv->majorOpcode;
974 fb_req->glxCode = X_GLXGetFBConfigs;
975 fb_req->screen = i;
976 break;
977
978 case 2:
979 GetReqExtra(GLXVendorPrivateWithReply,
980 sz_xGLXGetFBConfigsSGIXReq-sz_xGLXVendorPrivateWithReplyReq,vpreq);
981 sgi_req = (xGLXGetFBConfigsSGIXReq *) vpreq;
982 sgi_req->reqType = priv->majorOpcode;
983 sgi_req->glxCode = X_GLXVendorPrivateWithReply;
984 sgi_req->vendorCode = X_GLXvop_GetFBConfigsSGIX;
985 sgi_req->screen = i;
986 break;
987
988 case 3:
989 GetReq(GLXGetVisualConfigs,req);
990 req->reqType = priv->majorOpcode;
991 req->glxCode = X_GLXGetVisualConfigs;
992 req->screen = i;
993 break;
994 }
995
996 if (!_XReply(dpy, (xReply*) &reply, 0, False)) {
997 /* Something is busted. Punt. */
998 UnlockDisplay(dpy);
999 FreeScreenConfigs(priv);
1000 return GL_FALSE;
1001 }
1002
1003 UnlockDisplay(dpy);
1004 if (!reply.numVisuals) {
1005 /* This screen does not support GL rendering */
1006 UnlockDisplay(dpy);
1007 continue;
1008 }
1009
1010 /* FIXME: Is the __GLX_MIN_CONFIG_PROPS test correct for
1011 * FIXME: FBconfigs?
1012 */
1013 /* Check number of properties */
1014 nprops = reply.numProps;
1015 if ((nprops < __GLX_MIN_CONFIG_PROPS) ||
1016 (nprops > __GLX_MAX_CONFIG_PROPS)) {
1017 /* Huh? Not in protocol defined limits. Punt */
1018 UnlockDisplay(dpy);
1019 SyncHandle();
1020 FreeScreenConfigs(priv);
1021 return GL_FALSE;
1022 }
1023
1024 /* Allocate memory for our config structure */
1025 psc->configs = _gl_context_modes_create(reply.numVisuals,
1026 sizeof(__GLcontextModes));
1027 if (!psc->configs) {
1028 UnlockDisplay(dpy);
1029 SyncHandle();
1030 FreeScreenConfigs(priv);
1031 return GL_FALSE;
1032 }
1033
1034 /* Allocate memory for the properties, if needed */
1035 if ( supported_request != 3 ) {
1036 nprops *= 2;
1037 }
1038
1039 prop_size = nprops * __GLX_SIZE_INT32;
1040
1041 if (prop_size <= sizeof(buf)) {
1042 props = buf;
1043 } else {
1044 props = (INT32 *) Xmalloc(prop_size);
1045 }
1046
1047 /* Read each config structure and convert it into our format */
1048 config = psc->configs;
1049 for (j = 0; j < reply.numVisuals; j++) {
1050 assert( config != NULL );
1051 _XRead(dpy, (char *)props, prop_size);
1052
1053 if ( supported_request != 3 ) {
1054 config->rgbMode = GL_TRUE;
1055 config->drawableType = GLX_WINDOW_BIT;
1056 }
1057 else {
1058 config->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT;
1059 }
1060
1061 __glXInitializeVisualConfigFromTags( config, nprops, props,
1062 (supported_request != 3),
1063 GL_TRUE );
1064 if ( config->fbconfigID == GLX_DONT_CARE ) {
1065 config->fbconfigID = config->visualID;
1066 }
1067 config->screen = i;
1068 config = config->next;
1069 }
1070 if (props != buf) {
1071 Xfree((char *)props);
1072 }
1073 UnlockDisplay(dpy);
1074
1075 #ifdef GLX_DIRECT_RENDERING
1076 /* Initialize per screen dynamic client GLX extensions */
1077 psc->ext_list_first_time = GL_TRUE;
1078 /* Initialize the direct rendering per screen data and functions */
1079 if (priv->driDisplay.private != NULL) {
1080 if (priv->driDisplay.createNewScreen &&
1081 priv->driDisplay.createNewScreen[i]) {
1082
1083 psc->driScreen.screenConfigs = (void *)psc;
1084 psc->driScreen.private =
1085 CallCreateNewScreen(dpy, i, & psc->driScreen,
1086 & priv->driDisplay,
1087 priv->driDisplay.createNewScreen[i] );
1088 }
1089 else if (priv->driDisplay.createScreen &&
1090 priv->driDisplay.createScreen[i]) {
1091 /* screen initialization (bootstrap the driver) */
1092 if ( (psc->old_configs == NULL)
1093 && !FillInVisuals(psc) ) {
1094 FreeScreenConfigs(priv);
1095 return GL_FALSE;
1096 }
1097
1098 psc->driScreen.screenConfigs = (void *)psc;
1099 psc->driScreen.private =
1100 (*(priv->driDisplay.createScreen[i]))(dpy, i, &psc->driScreen,
1101 psc->numOldConfigs,
1102 psc->old_configs);
1103 }
1104 }
1105 #endif
1106 }
1107 SyncHandle();
1108 return GL_TRUE;
1109 }
1110
1111 /*
1112 ** Initialize the client side extension code.
1113 */
1114 __GLXdisplayPrivate *__glXInitialize(Display* dpy)
1115 {
1116 XExtDisplayInfo *info = __glXFindDisplay(dpy);
1117 XExtData **privList, *private, *found;
1118 __GLXdisplayPrivate *dpyPriv;
1119 XEDataObject dataObj;
1120 int major, minor;
1121
1122 #if defined(GLX_DIRECT_RENDERING) && defined(XTHREADS)
1123 {
1124 static int firstCall = 1;
1125 if (firstCall) {
1126 /* initialize the GLX mutexes */
1127 xmutex_init(&__glXmutex);
1128 firstCall = 0;
1129 }
1130 }
1131 #endif
1132
1133 INIT_MESA_SPARC
1134 /* The one and only long long lock */
1135 __glXLock();
1136
1137 if (!XextHasExtension(info)) {
1138 /* No GLX extension supported by this server. Oh well. */
1139 __glXUnlock();
1140 XMissingExtension(dpy, __glXExtensionName);
1141 return 0;
1142 }
1143
1144 /* See if a display private already exists. If so, return it */
1145 dataObj.display = dpy;
1146 privList = XEHeadOfExtensionList(dataObj);
1147 found = XFindOnExtensionList(privList, info->codes->extension);
1148 if (found) {
1149 __glXUnlock();
1150 return (__GLXdisplayPrivate *) found->private_data;
1151 }
1152
1153 /* See if the versions are compatible */
1154 if (!QueryVersion(dpy, info->codes->major_opcode, &major, &minor)) {
1155 /* The client and server do not agree on versions. Punt. */
1156 __glXUnlock();
1157 return 0;
1158 }
1159
1160 /*
1161 ** Allocate memory for all the pieces needed for this buffer.
1162 */
1163 private = (XExtData *) Xmalloc(sizeof(XExtData));
1164 if (!private) {
1165 __glXUnlock();
1166 return 0;
1167 }
1168 dpyPriv = (__GLXdisplayPrivate *) Xmalloc(sizeof(__GLXdisplayPrivate));
1169 if (!dpyPriv) {
1170 __glXUnlock();
1171 Xfree((char*) private);
1172 return 0;
1173 }
1174
1175 /*
1176 ** Init the display private and then read in the screen config
1177 ** structures from the server.
1178 */
1179 dpyPriv->majorOpcode = info->codes->major_opcode;
1180 dpyPriv->majorVersion = major;
1181 dpyPriv->minorVersion = minor;
1182 dpyPriv->dpy = dpy;
1183
1184 dpyPriv->serverGLXvendor = 0x0;
1185 dpyPriv->serverGLXversion = 0x0;
1186
1187 #ifdef GLX_DIRECT_RENDERING
1188 /*
1189 ** Initialize the direct rendering per display data and functions.
1190 ** Note: This _must_ be done before calling any other DRI routines
1191 ** (e.g., those called in AllocAndFetchScreenConfigs).
1192 */
1193 if (getenv("LIBGL_ALWAYS_INDIRECT")) {
1194 /* Assinging zero here assures we'll never go direct */
1195 dpyPriv->driDisplay.private = 0;
1196 dpyPriv->driDisplay.destroyDisplay = 0;
1197 dpyPriv->driDisplay.createScreen = 0;
1198 }
1199 else {
1200 dpyPriv->driDisplay.private =
1201 driCreateDisplay(dpy, &dpyPriv->driDisplay);
1202 }
1203 #endif
1204
1205 if (!AllocAndFetchScreenConfigs(dpy, dpyPriv)) {
1206 __glXUnlock();
1207 Xfree((char*) dpyPriv);
1208 Xfree((char*) private);
1209 return 0;
1210 }
1211
1212 /*
1213 ** Fill in the private structure. This is the actual structure that
1214 ** hangs off of the Display structure. Our private structure is
1215 ** referred to by this structure. Got that?
1216 */
1217 private->number = info->codes->extension;
1218 private->next = 0;
1219 private->free_private = __glXFreeDisplayPrivate;
1220 private->private_data = (char *) dpyPriv;
1221 XAddToExtensionList(privList, private);
1222
1223 if (dpyPriv->majorVersion == 1 && dpyPriv->minorVersion >= 1) {
1224 __glXClientInfo(dpy, dpyPriv->majorOpcode);
1225 }
1226 __glXUnlock();
1227
1228 return dpyPriv;
1229 }
1230
1231 /*
1232 ** Setup for sending a GLX command on dpy. Make sure the extension is
1233 ** initialized. Try to avoid calling __glXInitialize as its kinda slow.
1234 */
1235 CARD8 __glXSetupForCommand(Display *dpy)
1236 {
1237 GLXContext gc;
1238 __GLXdisplayPrivate *priv;
1239
1240 /* If this thread has a current context, flush its rendering commands */
1241 gc = __glXGetCurrentContext();
1242 if (gc->currentDpy) {
1243 /* Flush rendering buffer of the current context, if any */
1244 (void) __glXFlushRenderBuffer(gc, gc->pc);
1245
1246 if (gc->currentDpy == dpy) {
1247 /* Use opcode from gc because its right */
1248 INIT_MESA_SPARC
1249 return gc->majorOpcode;
1250 } else {
1251 /*
1252 ** Have to get info about argument dpy because it might be to
1253 ** a different server
1254 */
1255 }
1256 }
1257
1258 /* Forced to lookup extension via the slow initialize route */
1259 priv = __glXInitialize(dpy);
1260 if (!priv) {
1261 return 0;
1262 }
1263 return priv->majorOpcode;
1264 }
1265
1266 /**
1267 * Flush the drawing command transport buffer.
1268 *
1269 * \param ctx Context whose transport buffer is to be flushed.
1270 * \param pc Pointer to first unused buffer location.
1271 *
1272 * \todo
1273 * Modify this function to use \c ctx->pc instead of the explicit
1274 * \c pc parameter.
1275 */
1276 GLubyte *__glXFlushRenderBuffer(__GLXcontext *ctx, GLubyte *pc)
1277 {
1278 Display * const dpy = ctx->currentDpy;
1279 xGLXRenderReq *req;
1280 const GLint size = pc - ctx->buf;
1281
1282 if ( (dpy != NULL) && (size > 0) ) {
1283 /* Send the entire buffer as an X request */
1284 LockDisplay(dpy);
1285 GetReq(GLXRender,req);
1286 req->reqType = ctx->majorOpcode;
1287 req->glxCode = X_GLXRender;
1288 req->contextTag = ctx->currentContextTag;
1289 req->length += (size + 3) >> 2;
1290 _XSend(dpy, (char *)ctx->buf, size);
1291 UnlockDisplay(dpy);
1292 SyncHandle();
1293 }
1294
1295 /* Reset pointer and return it */
1296 ctx->pc = ctx->buf;
1297 return ctx->pc;
1298 }
1299
1300
1301 /**
1302 * Send a portion of a GLXRenderLarge command to the server. The advantage of
1303 * this function over \c __glXSendLargeCommand is that callers can use the
1304 * data buffer in the GLX context and may be able to avoid allocating an
1305 * extra buffer. The disadvantage is the clients will have to do more
1306 * GLX protocol work (i.e., calculating \c totalRequests, etc.).
1307 *
1308 * \sa __glXSendLargeCommand
1309 *
1310 * \param gc GLX context
1311 * \param requestNumber Which part of the whole command is this? The first
1312 * request is 1.
1313 * \param totalRequests How many requests will there be?
1314 * \param data Command data.
1315 * \param dataLen Size, in bytes, of the command data.
1316 */
1317 void __glXSendLargeChunk(__GLXcontext *gc, GLint requestNumber,
1318 GLint totalRequests,
1319 const GLvoid * data, GLint dataLen)
1320 {
1321 Display *dpy = gc->currentDpy;
1322 xGLXRenderLargeReq *req;
1323
1324 if ( requestNumber == 1 ) {
1325 LockDisplay(dpy);
1326 }
1327
1328 GetReq(GLXRenderLarge,req);
1329 req->reqType = gc->majorOpcode;
1330 req->glxCode = X_GLXRenderLarge;
1331 req->contextTag = gc->currentContextTag;
1332 req->length += (dataLen + 3) >> 2;
1333 req->requestNumber = requestNumber;
1334 req->requestTotal = totalRequests;
1335 req->dataBytes = dataLen;
1336 Data(dpy, data, dataLen);
1337
1338 if ( requestNumber == totalRequests ) {
1339 UnlockDisplay(dpy);
1340 SyncHandle();
1341 }
1342 }
1343
1344
1345 /**
1346 * Send a command that is too large for the GLXRender protocol request.
1347 *
1348 * Send a large command, one that is too large for some reason to
1349 * send using the GLXRender protocol request. One reason to send
1350 * a large command is to avoid copying the data.
1351 *
1352 * \param ctx GLX context
1353 * \param header Header data.
1354 * \param headerLen Size, in bytes, of the header data. It is assumed that
1355 * the header data will always be small enough to fit in
1356 * a single X protocol packet.
1357 * \param data Command data.
1358 * \param dataLen Size, in bytes, of the command data.
1359 */
1360 void __glXSendLargeCommand(__GLXcontext *ctx,
1361 const GLvoid *header, GLint headerLen,
1362 const GLvoid *data, GLint dataLen)
1363 {
1364 GLint maxSize;
1365 GLint totalRequests, requestNumber;
1366
1367 /*
1368 ** Calculate the maximum amount of data can be stuffed into a single
1369 ** packet. sz_xGLXRenderReq is added because bufSize is the maximum
1370 ** packet size minus sz_xGLXRenderReq.
1371 */
1372 maxSize = (ctx->bufSize + sz_xGLXRenderReq) - sz_xGLXRenderLargeReq;
1373 totalRequests = 1 + (dataLen / maxSize);
1374 if (dataLen % maxSize) totalRequests++;
1375
1376 /*
1377 ** Send all of the command, except the large array, as one request.
1378 */
1379 assert( headerLen <= maxSize );
1380 __glXSendLargeChunk(ctx, 1, totalRequests, header, headerLen);
1381
1382 /*
1383 ** Send enough requests until the whole array is sent.
1384 */
1385 for ( requestNumber = 2 ; requestNumber <= (totalRequests - 1) ; requestNumber++ ) {
1386 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, maxSize);
1387 data = (const GLvoid *) (((const GLubyte *) data) + maxSize);
1388 dataLen -= maxSize;
1389 assert( dataLen > 0 );
1390 }
1391
1392 assert( dataLen <= maxSize );
1393 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, dataLen);
1394 }
1395
1396 /************************************************************************/
1397
1398 GLXContext glXGetCurrentContext(void)
1399 {
1400 GLXContext cx = __glXGetCurrentContext();
1401
1402 if (cx == &dummyContext) {
1403 return NULL;
1404 } else {
1405 return cx;
1406 }
1407 }
1408
1409 GLXDrawable glXGetCurrentDrawable(void)
1410 {
1411 GLXContext gc = __glXGetCurrentContext();
1412 return gc->currentDrawable;
1413 }
1414
1415
1416 /************************************************************************/
1417
1418 #ifdef GLX_DIRECT_RENDERING
1419 /* Return the DRI per screen structure */
1420 __DRIscreen *__glXFindDRIScreen(__DRInativeDisplay *dpy, int scrn)
1421 {
1422 __DRIscreen *pDRIScreen = NULL;
1423 XExtDisplayInfo *info = __glXFindDisplay(dpy);
1424 XExtData **privList, *found;
1425 __GLXdisplayPrivate *dpyPriv;
1426 XEDataObject dataObj;
1427
1428 __glXLock();
1429 dataObj.display = dpy;
1430 privList = XEHeadOfExtensionList(dataObj);
1431 found = XFindOnExtensionList(privList, info->codes->extension);
1432 __glXUnlock();
1433
1434 if (found) {
1435 dpyPriv = (__GLXdisplayPrivate *)found->private_data;
1436 pDRIScreen = &dpyPriv->screenConfigs[scrn].driScreen;
1437 }
1438
1439 return pDRIScreen;
1440 }
1441 #endif
1442
1443 /************************************************************************/
1444
1445 static Bool SendMakeCurrentRequest( Display *dpy, CARD8 opcode,
1446 GLXContextID gc, GLXContextTag old_gc, GLXDrawable draw, GLXDrawable read,
1447 xGLXMakeCurrentReply * reply );
1448
1449 /**
1450 * Sends a GLX protocol message to the specified display to make the context
1451 * and the drawables current.
1452 *
1453 * \param dpy Display to send the message to.
1454 * \param opcode Major opcode value for the display.
1455 * \param gc_id Context tag for the context to be made current.
1456 * \param draw Drawable ID for the "draw" drawable.
1457 * \param read Drawable ID for the "read" drawable.
1458 * \param reply Space to store the X-server's reply.
1459 *
1460 * \warning
1461 * This function assumes that \c dpy is locked with \c LockDisplay on entry.
1462 */
1463 static Bool SendMakeCurrentRequest( Display *dpy, CARD8 opcode,
1464 GLXContextID gc_id, GLXContextTag gc_tag,
1465 GLXDrawable draw, GLXDrawable read,
1466 xGLXMakeCurrentReply * reply )
1467 {
1468 if ( draw == read ) {
1469 xGLXMakeCurrentReq *req;
1470
1471 GetReq(GLXMakeCurrent,req);
1472 req->reqType = opcode;
1473 req->glxCode = X_GLXMakeCurrent;
1474 req->drawable = draw;
1475 req->context = gc_id;
1476 req->oldContextTag = gc_tag;
1477 }
1478 else {
1479 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
1480
1481 /* If the server can support the GLX 1.3 version, we should
1482 * perfer that. Not only that, some servers support GLX 1.3 but
1483 * not the SGI extension.
1484 */
1485
1486 if ( (priv->majorVersion > 1) || (priv->minorVersion >= 3) ) {
1487 xGLXMakeContextCurrentReq *req;
1488
1489 GetReq(GLXMakeContextCurrent,req);
1490 req->reqType = opcode;
1491 req->glxCode = X_GLXMakeContextCurrent;
1492 req->drawable = draw;
1493 req->readdrawable = read;
1494 req->context = gc_id;
1495 req->oldContextTag = gc_tag;
1496 }
1497 else {
1498 xGLXVendorPrivateWithReplyReq *vpreq;
1499 xGLXMakeCurrentReadSGIReq *req;
1500
1501 GetReqExtra(GLXVendorPrivateWithReply,
1502 sz_xGLXMakeCurrentReadSGIReq-sz_xGLXVendorPrivateWithReplyReq,vpreq);
1503 req = (xGLXMakeCurrentReadSGIReq *)vpreq;
1504 req->reqType = opcode;
1505 req->glxCode = X_GLXVendorPrivateWithReply;
1506 req->vendorCode = X_GLXvop_MakeCurrentReadSGI;
1507 req->drawable = draw;
1508 req->readable = read;
1509 req->context = gc_id;
1510 req->oldContextTag = gc_tag;
1511 }
1512 }
1513
1514 return _XReply(dpy, (xReply*) reply, 0, False);
1515 }
1516
1517
1518 static Bool BindContextWrapper( Display *dpy, GLXContext gc,
1519 GLXDrawable draw, GLXDrawable read )
1520 {
1521 #ifdef GLX_DIRECT_RENDERING
1522 if ( gc->driContext.bindContext3 != NULL ) {
1523 return (*gc->driContext.bindContext3)(dpy, gc->screen, draw, read,
1524 & gc->driContext);
1525 }
1526 #ifndef DRI_NEW_INTERFACE_ONLY
1527 else {
1528 return (*gc->driContext.bindContext2)(dpy, gc->screen, draw, read,
1529 gc);
1530 }
1531 #endif
1532 #endif
1533 return GL_FALSE;
1534 }
1535
1536
1537 static Bool UnbindContextWrapper( Display *dpy, GLXContext gc )
1538 {
1539 #ifdef GLX_DIRECT_RENDERING
1540 if ( gc->driContext.unbindContext3 != NULL ) {
1541 return (*gc->driContext.unbindContext3)(dpy, gc->screen,
1542 gc->currentDrawable,
1543 gc->currentReadable,
1544 & gc->driContext );
1545 }
1546 #ifndef DRI_NEW_INTERFACE_ONLY
1547 else {
1548 return (*gc->driContext.unbindContext2)(dpy, gc->screen,
1549 gc->currentDrawable,
1550 gc->currentReadable, gc);
1551 }
1552 #endif
1553 #endif
1554 return GL_FALSE;
1555 }
1556
1557
1558 /*
1559 ** Make a particular context current.
1560 ** NOTE: this is in this file so that it can access dummyContext.
1561 */
1562 USED static Bool MakeContextCurrent(Display *dpy, GLXDrawable draw,
1563 GLXDrawable read, GLXContext gc)
1564 {
1565 xGLXMakeCurrentReply reply;
1566 GLXContext oldGC;
1567 CARD8 opcode, oldOpcode;
1568 Bool sentRequestToOldDpy = False;
1569 Bool bindReturnValue = True;
1570
1571 opcode = __glXSetupForCommand(dpy);
1572 if (!opcode) {
1573 return GL_FALSE;
1574 }
1575
1576 /*
1577 ** Make sure that the new context has a nonzero ID. In the request,
1578 ** a zero context ID is used only to mean that we bind to no current
1579 ** context.
1580 */
1581 if ((gc != NULL) && (gc->xid == None)) {
1582 return GL_FALSE;
1583 }
1584
1585 oldGC = __glXGetCurrentContext();
1586 oldOpcode = (gc == oldGC) ? opcode : __glXSetupForCommand(dpy);
1587 if (!oldOpcode) {
1588 return GL_FALSE;
1589 }
1590
1591 if ((dpy != oldGC->currentDpy || (gc && gc->isDirect)) &&
1592 !oldGC->isDirect && oldGC != &dummyContext) {
1593 /*
1594 ** We are either switching from one dpy to another and have to
1595 ** send a request to the previous dpy to unbind the previous
1596 ** context, or we are switching away from a indirect context to
1597 ** a direct context and have to send a request to the dpy to
1598 ** unbind the previous context.
1599 */
1600 sentRequestToOldDpy = True;
1601 LockDisplay(oldGC->currentDpy);
1602 if ( ! SendMakeCurrentRequest( oldGC->currentDpy, oldOpcode, None,
1603 oldGC->currentContextTag, None, None,
1604 &reply ) ) {
1605 /* The make current failed. Just return GL_FALSE. */
1606 UnlockDisplay(oldGC->currentDpy);
1607 SyncHandle();
1608 return GL_FALSE;
1609 }
1610
1611 oldGC->currentContextTag = 0;
1612 }
1613
1614 #ifdef GLX_DIRECT_RENDERING
1615 /* Unbind the old direct rendering context */
1616 if (oldGC->isDirect) {
1617 if (oldGC->driContext.private) {
1618 if (! UnbindContextWrapper( oldGC->currentDpy, oldGC )) {
1619 /* The make current failed. Just return GL_FALSE. */
1620 return GL_FALSE;
1621 }
1622 }
1623 oldGC->currentContextTag = 0;
1624 }
1625
1626 /* Bind the direct rendering context to the drawable */
1627 if (gc && gc->isDirect) {
1628 if (gc->driContext.private) {
1629 bindReturnValue = BindContextWrapper( dpy, gc, draw, read );
1630 }
1631 } else {
1632 #endif
1633 _glapi_check_multithread();
1634 /* Send a glXMakeCurrent request to bind the new context. */
1635 LockDisplay(dpy);
1636
1637 bindReturnValue = SendMakeCurrentRequest( dpy, opcode,
1638 gc ? gc->xid : None,
1639 oldGC->currentContextTag,
1640 draw, read, &reply );
1641 UnlockDisplay(dpy);
1642 #ifdef GLX_DIRECT_RENDERING
1643 }
1644 #endif
1645
1646
1647 if (!bindReturnValue) {
1648 /* The make current failed. */
1649 if (gc && !gc->isDirect) {
1650 SyncHandle();
1651 }
1652
1653 #ifdef GLX_DIRECT_RENDERING
1654 /* If the old context was direct rendering, then re-bind to it. */
1655 if (oldGC->isDirect) {
1656 if (oldGC->driContext.private) {
1657 if (! BindContextWrapper( oldGC->currentDpy, oldGC,
1658 oldGC->currentDrawable,
1659 oldGC->currentReadable )) {
1660 /*
1661 ** The request failed; this cannot happen with the
1662 ** current API. If in the future the API is
1663 ** extended to allow context sharing between
1664 ** clients, then this may fail (because another
1665 ** client may have grabbed the context); in that
1666 ** case, we cannot undo the previous request, and
1667 ** cannot adhere to the "no-op" behavior.
1668 */
1669 }
1670 }
1671 } else
1672 #endif
1673 /*
1674 ** If we had just sent a request to a previous dpy, we have to
1675 ** undo that request (because if a command fails, it should act
1676 ** like a no-op) by making current to the previous context and
1677 ** drawable.
1678 */
1679 if (sentRequestToOldDpy) {
1680 if ( !SendMakeCurrentRequest( oldGC->currentDpy, oldOpcode,
1681 oldGC->xid, 0,
1682 oldGC->currentDrawable,
1683 oldGC->currentReadable, &reply ) ) {
1684 UnlockDisplay(oldGC->currentDpy);
1685 SyncHandle();
1686 /*
1687 ** The request failed; this cannot happen with the
1688 ** current API. If in the future the API is extended to
1689 ** allow context sharing between clients, then this may
1690 ** fail (because another client may have grabbed the
1691 ** context); in that case, we cannot undo the previous
1692 ** request, and cannot adhere to the "no-op" behavior.
1693 */
1694 }
1695 else {
1696 UnlockDisplay(oldGC->currentDpy);
1697 }
1698 oldGC->currentContextTag = reply.contextTag;
1699 }
1700 return GL_FALSE;
1701 }
1702
1703 /* Update our notion of what is current */
1704 __glXLock();
1705 if (gc == oldGC) {
1706 /*
1707 ** Even though the contexts are the same the drawable might have
1708 ** changed. Note that gc cannot be the dummy, and that oldGC
1709 ** cannot be NULL, therefore if they are the same, gc is not
1710 ** NULL and not the dummy.
1711 */
1712 gc->currentDrawable = draw;
1713 gc->currentReadable = read;
1714 } else {
1715 if (oldGC != &dummyContext) {
1716 /* Old current context is no longer current to anybody */
1717 oldGC->currentDpy = 0;
1718 oldGC->currentDrawable = None;
1719 oldGC->currentReadable = None;
1720 oldGC->currentContextTag = 0;
1721
1722 if (oldGC->xid == None) {
1723 /*
1724 ** We are switching away from a context that was
1725 ** previously destroyed, so we need to free the memory
1726 ** for the old handle.
1727 */
1728 #ifdef GLX_DIRECT_RENDERING
1729 /* Destroy the old direct rendering context */
1730 if (oldGC->isDirect) {
1731 if (oldGC->driContext.private) {
1732 (*oldGC->driContext.destroyContext)
1733 (dpy, oldGC->screen, oldGC->driContext.private);
1734 oldGC->driContext.private = NULL;
1735 }
1736 }
1737 #endif
1738 __glXFreeContext(oldGC);
1739 }
1740 }
1741 if (gc) {
1742 __glXSetCurrentContext(gc);
1743 #ifdef GLX_DIRECT_RENDERING
1744 if (!gc->isDirect) {
1745 if (!IndirectAPI)
1746 IndirectAPI = __glXNewIndirectAPI();
1747 _glapi_set_dispatch(IndirectAPI);
1748 # ifdef GLX_USE_APPLEGL
1749 do {
1750 extern void XAppleDRIUseIndirectDispatch(void);
1751 XAppleDRIUseIndirectDispatch();
1752 } while (0);
1753 # endif
1754 }
1755 #else
1756 /* if not direct rendering, always need indirect dispatch */
1757 if (!IndirectAPI)
1758 IndirectAPI = __glXNewIndirectAPI();
1759 _glapi_set_dispatch(IndirectAPI);
1760 #endif
1761 gc->currentDpy = dpy;
1762 gc->currentDrawable = draw;
1763 gc->currentReadable = read;
1764 #ifdef GLX_DIRECT_RENDERING
1765 if (gc->isDirect) reply.contextTag = -1;
1766 #endif
1767 gc->currentContextTag = reply.contextTag;
1768 } else {
1769 __glXSetCurrentContext(&dummyContext);
1770 #ifdef GLX_DIRECT_RENDERING
1771 _glapi_set_dispatch(NULL); /* no-op functions */
1772 #endif
1773 }
1774 }
1775 __glXUnlock();
1776 return GL_TRUE;
1777 }
1778
1779
1780 PUBLIC Bool GLX_PREFIX(glXMakeCurrent)(Display *dpy, GLXDrawable draw,
1781 GLXContext gc)
1782 {
1783 return MakeContextCurrent( dpy, draw, draw, gc );
1784 }
1785
1786 PUBLIC GLX_ALIAS(Bool, glXMakeCurrentReadSGI,
1787 (Display *dpy, GLXDrawable d, GLXDrawable r, GLXContext ctx),
1788 (dpy, d, r, ctx), MakeContextCurrent)
1789
1790 PUBLIC GLX_ALIAS(Bool, glXMakeContextCurrent,
1791 (Display *dpy, GLXDrawable d, GLXDrawable r, GLXContext ctx),
1792 (dpy, d, r, ctx), MakeContextCurrent)
1793
1794
1795 #ifdef DEBUG
1796 void __glXDumpDrawBuffer(__GLXcontext *ctx)
1797 {
1798 GLubyte *p = ctx->buf;
1799 GLubyte *end = ctx->pc;
1800 GLushort opcode, length;
1801
1802 while (p < end) {
1803 /* Fetch opcode */
1804 opcode = *((GLushort*) p);
1805 length = *((GLushort*) (p + 2));
1806 printf("%2x: %5d: ", opcode, length);
1807 length -= 4;
1808 p += 4;
1809 while (length > 0) {
1810 printf("%08x ", *((unsigned *) p));
1811 p += 4;
1812 length -= 4;
1813 }
1814 printf("\n");
1815 }
1816 }
1817 #endif
1818
1819 #ifdef USE_SPARC_ASM
1820 /*
1821 * Used only when we are sparc, using sparc assembler.
1822 *
1823 */
1824
1825 static void
1826 _glx_mesa_init_sparc_glapi_relocs(void)
1827 {
1828 unsigned int *insn_ptr, *end_ptr;
1829 unsigned long disp_addr;
1830
1831 insn_ptr = &_mesa_sparc_glapi_begin;
1832 end_ptr = &_mesa_sparc_glapi_end;
1833 disp_addr = (unsigned long) &_glapi_Dispatch;
1834
1835 /*
1836 * Verbatim from Mesa sparc.c. It's needed because there doesn't
1837 * seem to be a better way to do this:
1838 *
1839 * UNCONDITIONAL_JUMP ( (*_glapi_Dispatch) + entry_offset )
1840 *
1841 * This code is patching in the ADDRESS of the pointer to the
1842 * dispatch table. Hence, it must be called exactly once, because
1843 * that address is not going to change.
1844 *
1845 * What it points to can change, but Mesa (and hence, we) assume
1846 * that there is only one pointer.
1847 *
1848 */
1849 while (insn_ptr < end_ptr) {
1850 #if ( defined(__sparc_v9__) && ( !defined(__linux__) || defined(__linux_64__) ) )
1851 /*
1852 This code patches for 64-bit addresses. This had better
1853 not happen for Sparc/Linux, no matter what architecture we
1854 are building for. So, don't do this.
1855
1856 The 'defined(__linux_64__)' is used here as a placeholder for
1857 when we do do 64-bit usermode on sparc linux.
1858 */
1859 insn_ptr[0] |= (disp_addr >> (32 + 10));
1860 insn_ptr[1] |= ((disp_addr & 0xffffffff) >> 10);
1861 __glapi_sparc_icache_flush(&insn_ptr[0]);
1862 insn_ptr[2] |= ((disp_addr >> 32) & ((1 << 10) - 1));
1863 insn_ptr[3] |= (disp_addr & ((1 << 10) - 1));
1864 __glapi_sparc_icache_flush(&insn_ptr[2]);
1865 insn_ptr += 11;
1866 #else
1867 insn_ptr[0] |= (disp_addr >> 10);
1868 insn_ptr[1] |= (disp_addr & ((1 << 10) - 1));
1869 __glapi_sparc_icache_flush(&insn_ptr[0]);
1870 insn_ptr += 5;
1871 #endif
1872 }
1873 }
1874 #endif /* sparc ASM in use */
1875