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