remove drm stuff from libGL, this is now in libdrm 2.3.0
[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
726
727 /**
728 * Perform the required libGL-side initialization and call the client-side
729 * driver's \c __driCreateNewScreen function.
730 *
731 * \param dpy Display pointer.
732 * \param scrn Screen number on the display.
733 * \param psc DRI screen information.
734 * \param driDpy DRI display information.
735 * \param createNewScreen Pointer to the client-side driver's
736 * \c __driCreateNewScreen function.
737 * \returns A pointer to the \c __DRIscreenPrivate structure returned by
738 * the client-side driver on success, or \c NULL on failure.
739 *
740 * \todo This function needs to be modified to remove context-modes from the
741 * list stored in the \c __GLXscreenConfigsRec to match the list
742 * returned by the client-side driver.
743 */
744 static void *
745 CallCreateNewScreen(Display *dpy, int scrn, __DRIscreen *psc,
746 __DRIdisplay * driDpy,
747 PFNCREATENEWSCREENFUNC createNewScreen)
748 {
749 __DRIscreenPrivate *psp = NULL;
750 #ifndef GLX_USE_APPLEGL
751 drm_handle_t hSAREA;
752 drmAddress pSAREA = MAP_FAILED;
753 char *BusID;
754 __DRIversion ddx_version;
755 __DRIversion dri_version;
756 __DRIversion drm_version;
757 __DRIframebuffer framebuffer;
758 int fd = -1;
759 int status;
760 const char * err_msg;
761 const char * err_extra;
762 int api_ver = __glXGetInternalVersion();
763
764
765 dri_version.major = driDpy->private->driMajor;
766 dri_version.minor = driDpy->private->driMinor;
767 dri_version.patch = driDpy->private->driPatch;
768
769
770 err_msg = "XF86DRIOpenConnection";
771 err_extra = NULL;
772
773 framebuffer.base = MAP_FAILED;
774 framebuffer.dev_priv = NULL;
775
776 if (XF86DRIOpenConnection(dpy, scrn, &hSAREA, &BusID)) {
777 int newlyopened;
778 fd = drmOpenOnce(NULL,BusID, &newlyopened);
779 Xfree(BusID); /* No longer needed */
780
781 err_msg = "open DRM";
782 err_extra = strerror( -fd );
783
784 if (fd >= 0) {
785 drm_magic_t magic;
786
787 err_msg = "drmGetMagic";
788 err_extra = NULL;
789
790 if (!drmGetMagic(fd, &magic)) {
791 drmVersionPtr version = drmGetVersion(fd);
792 if (version) {
793 drm_version.major = version->version_major;
794 drm_version.minor = version->version_minor;
795 drm_version.patch = version->version_patchlevel;
796 drmFreeVersion(version);
797 }
798 else {
799 drm_version.major = -1;
800 drm_version.minor = -1;
801 drm_version.patch = -1;
802 }
803
804 err_msg = "XF86DRIAuthConnection";
805 if (!newlyopened || XF86DRIAuthConnection(dpy, scrn, magic)) {
806 char *driverName;
807
808 /*
809 * Get device name (like "tdfx") and the ddx version
810 * numbers. We'll check the version in each DRI driver's
811 * "createNewScreen" function.
812 */
813 err_msg = "XF86DRIGetClientDriverName";
814 if (XF86DRIGetClientDriverName(dpy, scrn,
815 &ddx_version.major,
816 &ddx_version.minor,
817 &ddx_version.patch,
818 &driverName)) {
819 drm_handle_t hFB;
820 int junk;
821
822 /* No longer needed. */
823 Xfree( driverName );
824
825
826 /*
827 * Get device-specific info. pDevPriv will point to a struct
828 * (such as DRIRADEONRec in xfree86/driver/ati/radeon_dri.h)
829 * that has information about the screen size, depth, pitch,
830 * ancilliary buffers, DRM mmap handles, etc.
831 */
832 err_msg = "XF86DRIGetDeviceInfo";
833 if (XF86DRIGetDeviceInfo(dpy, scrn,
834 &hFB,
835 &junk,
836 &framebuffer.size,
837 &framebuffer.stride,
838 &framebuffer.dev_priv_size,
839 &framebuffer.dev_priv)) {
840 framebuffer.width = DisplayWidth(dpy, scrn);
841 framebuffer.height = DisplayHeight(dpy, scrn);
842
843 /*
844 * Map the framebuffer region.
845 */
846 status = drmMap(fd, hFB, framebuffer.size,
847 (drmAddressPtr)&framebuffer.base);
848
849 err_msg = "drmMap of framebuffer";
850 err_extra = strerror( -status );
851
852 if ( status == 0 ) {
853 /*
854 * Map the SAREA region. Further mmap regions
855 * may be setup in each DRI driver's
856 * "createNewScreen" function.
857 */
858 status = drmMap(fd, hSAREA, SAREA_MAX,
859 &pSAREA);
860
861 err_msg = "drmMap of sarea";
862 err_extra = strerror( -status );
863
864 if ( status == 0 ) {
865 __GLcontextModes * driver_modes = NULL;
866 __GLXscreenConfigs *configs = psc->screenConfigs;
867
868 err_msg = "InitDriver";
869 err_extra = NULL;
870 psp = (*createNewScreen)(dpy, scrn,
871 psc,
872 configs->configs,
873 & ddx_version,
874 & dri_version,
875 & drm_version,
876 & framebuffer,
877 pSAREA,
878 fd,
879 api_ver,
880 & interface_methods,
881 & driver_modes );
882
883 filter_modes( & configs->configs,
884 driver_modes );
885 _gl_context_modes_destroy( driver_modes );
886 }
887 }
888 }
889 }
890 }
891 }
892 }
893 }
894
895 if ( psp == NULL ) {
896 if ( pSAREA != MAP_FAILED ) {
897 (void)drmUnmap(pSAREA, SAREA_MAX);
898 }
899
900 if ( framebuffer.base != MAP_FAILED ) {
901 (void)drmUnmap((drmAddress)framebuffer.base, framebuffer.size);
902 }
903
904 if ( framebuffer.dev_priv != NULL ) {
905 Xfree(framebuffer.dev_priv);
906 }
907
908 if ( fd >= 0 ) {
909 (void)drmCloseOnce(fd);
910 }
911
912 (void)XF86DRICloseConnection(dpy, scrn);
913
914 if ( err_extra != NULL ) {
915 fprintf(stderr, "libGL error: %s failed (%s)\n", err_msg,
916 err_extra);
917 }
918 else {
919 fprintf(stderr, "libGL error: %s failed\n", err_msg );
920 }
921
922 fprintf(stderr, "libGL error: reverting to (slow) indirect rendering\n");
923 }
924 #endif /* !GLX_USE_APPLEGL */
925
926 return psp;
927 }
928 #endif /* GLX_DIRECT_RENDERING */
929
930
931 /*
932 ** Allocate the memory for the per screen configs for each screen.
933 ** If that works then fetch the per screen configs data.
934 */
935 static Bool AllocAndFetchScreenConfigs(Display *dpy, __GLXdisplayPrivate *priv)
936 {
937 xGLXGetVisualConfigsReq *req;
938 xGLXGetFBConfigsReq *fb_req;
939 xGLXVendorPrivateWithReplyReq *vpreq;
940 xGLXGetFBConfigsSGIXReq *sgi_req;
941 xGLXGetVisualConfigsReply reply;
942 __GLXscreenConfigs *psc;
943 __GLcontextModes *config;
944 GLint i, j, nprops, screens;
945 INT32 buf[__GLX_TOTAL_CONFIG], *props;
946 unsigned supported_request = 0;
947 unsigned prop_size;
948
949 /*
950 ** First allocate memory for the array of per screen configs.
951 */
952 screens = ScreenCount(dpy);
953 psc = (__GLXscreenConfigs*) Xmalloc(screens * sizeof(__GLXscreenConfigs));
954 if (!psc) {
955 return GL_FALSE;
956 }
957 memset(psc, 0, screens * sizeof(__GLXscreenConfigs));
958 priv->screenConfigs = psc;
959
960 priv->serverGLXversion = __glXGetStringFromServer(dpy, priv->majorOpcode,
961 X_GLXQueryServerString,
962 0, GLX_VERSION);
963 if ( priv->serverGLXversion == NULL ) {
964 FreeScreenConfigs(priv);
965 return GL_FALSE;
966 }
967
968 if ( atof( priv->serverGLXversion ) >= 1.3 ) {
969 supported_request = 1;
970 }
971
972 /*
973 ** Now fetch each screens configs structures. If a screen supports
974 ** GL (by returning a numVisuals > 0) then allocate memory for our
975 ** config structure and then fill it in.
976 */
977 for (i = 0; i < screens; i++, psc++) {
978 if ( supported_request != 1 ) {
979 psc->serverGLXexts = __glXGetStringFromServer(dpy, priv->majorOpcode,
980 X_GLXQueryServerString,
981 i, GLX_EXTENSIONS);
982 if ( strstr( psc->serverGLXexts, "GLX_SGIX_fbconfig" ) != NULL ) {
983 supported_request = 2;
984 }
985 else {
986 supported_request = 3;
987 }
988 }
989
990
991 LockDisplay(dpy);
992 switch( supported_request ) {
993 case 1:
994 GetReq(GLXGetFBConfigs,fb_req);
995 fb_req->reqType = priv->majorOpcode;
996 fb_req->glxCode = X_GLXGetFBConfigs;
997 fb_req->screen = i;
998 break;
999
1000 case 2:
1001 GetReqExtra(GLXVendorPrivateWithReply,
1002 sz_xGLXGetFBConfigsSGIXReq-sz_xGLXVendorPrivateWithReplyReq,vpreq);
1003 sgi_req = (xGLXGetFBConfigsSGIXReq *) vpreq;
1004 sgi_req->reqType = priv->majorOpcode;
1005 sgi_req->glxCode = X_GLXVendorPrivateWithReply;
1006 sgi_req->vendorCode = X_GLXvop_GetFBConfigsSGIX;
1007 sgi_req->screen = i;
1008 break;
1009
1010 case 3:
1011 GetReq(GLXGetVisualConfigs,req);
1012 req->reqType = priv->majorOpcode;
1013 req->glxCode = X_GLXGetVisualConfigs;
1014 req->screen = i;
1015 break;
1016 }
1017
1018 if (!_XReply(dpy, (xReply*) &reply, 0, False)) {
1019 /* Something is busted. Punt. */
1020 UnlockDisplay(dpy);
1021 SyncHandle();
1022 FreeScreenConfigs(priv);
1023 return GL_FALSE;
1024 }
1025
1026 if (!reply.numVisuals) {
1027 /* This screen does not support GL rendering */
1028 UnlockDisplay(dpy);
1029 continue;
1030 }
1031
1032 /* FIXME: Is the __GLX_MIN_CONFIG_PROPS test correct for
1033 * FIXME: FBconfigs?
1034 */
1035 /* Check number of properties */
1036 nprops = reply.numProps;
1037 if ((nprops < __GLX_MIN_CONFIG_PROPS) ||
1038 (nprops > __GLX_MAX_CONFIG_PROPS)) {
1039 /* Huh? Not in protocol defined limits. Punt */
1040 UnlockDisplay(dpy);
1041 SyncHandle();
1042 FreeScreenConfigs(priv);
1043 return GL_FALSE;
1044 }
1045
1046 /* Allocate memory for our config structure */
1047 psc->configs = _gl_context_modes_create(reply.numVisuals,
1048 sizeof(__GLcontextModes));
1049 if (!psc->configs) {
1050 UnlockDisplay(dpy);
1051 SyncHandle();
1052 FreeScreenConfigs(priv);
1053 return GL_FALSE;
1054 }
1055
1056 /* Allocate memory for the properties, if needed */
1057 if ( supported_request != 3 ) {
1058 nprops *= 2;
1059 }
1060
1061 prop_size = nprops * __GLX_SIZE_INT32;
1062
1063 if (prop_size <= sizeof(buf)) {
1064 props = buf;
1065 } else {
1066 props = (INT32 *) Xmalloc(prop_size);
1067 }
1068
1069 /* Read each config structure and convert it into our format */
1070 config = psc->configs;
1071 for (j = 0; j < reply.numVisuals; j++) {
1072 assert( config != NULL );
1073 _XRead(dpy, (char *)props, prop_size);
1074
1075 if ( supported_request != 3 ) {
1076 config->rgbMode = GL_TRUE;
1077 config->drawableType = GLX_WINDOW_BIT;
1078 }
1079 else {
1080 config->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT;
1081 }
1082
1083 __glXInitializeVisualConfigFromTags( config, nprops, props,
1084 (supported_request != 3),
1085 GL_TRUE );
1086 if ( config->fbconfigID == GLX_DONT_CARE ) {
1087 config->fbconfigID = config->visualID;
1088 }
1089 config->screen = i;
1090 config = config->next;
1091 }
1092 if (props != buf) {
1093 Xfree((char *)props);
1094 }
1095 UnlockDisplay(dpy);
1096
1097 #ifdef GLX_DIRECT_RENDERING
1098 /* Initialize per screen dynamic client GLX extensions */
1099 psc->ext_list_first_time = GL_TRUE;
1100 /* Initialize the direct rendering per screen data and functions */
1101 if (priv->driDisplay.private != NULL) {
1102 /* FIXME: Should it be some sort of an error if createNewScreen[i]
1103 * FIXME: is NULL?
1104 */
1105 if (priv->driDisplay.createNewScreen &&
1106 priv->driDisplay.createNewScreen[i]) {
1107
1108 psc->driScreen.screenConfigs = (void *)psc;
1109 psc->driScreen.private =
1110 CallCreateNewScreen(dpy, i, & psc->driScreen,
1111 & priv->driDisplay,
1112 priv->driDisplay.createNewScreen[i] );
1113 }
1114 }
1115 #endif
1116 }
1117 SyncHandle();
1118 return GL_TRUE;
1119 }
1120
1121 /*
1122 ** Initialize the client side extension code.
1123 */
1124 __GLXdisplayPrivate *__glXInitialize(Display* dpy)
1125 {
1126 XExtDisplayInfo *info = __glXFindDisplay(dpy);
1127 XExtData **privList, *private, *found;
1128 __GLXdisplayPrivate *dpyPriv;
1129 XEDataObject dataObj;
1130 int major, minor;
1131
1132 #if defined(USE_XTHREADS)
1133 {
1134 static int firstCall = 1;
1135 if (firstCall) {
1136 /* initialize the GLX mutexes */
1137 xmutex_init(&__glXmutex);
1138 firstCall = 0;
1139 }
1140 }
1141 #endif
1142
1143 INIT_MESA_SPARC
1144 /* The one and only long long lock */
1145 __glXLock();
1146
1147 if (!XextHasExtension(info)) {
1148 /* No GLX extension supported by this server. Oh well. */
1149 __glXUnlock();
1150 XMissingExtension(dpy, __glXExtensionName);
1151 return 0;
1152 }
1153
1154 /* See if a display private already exists. If so, return it */
1155 dataObj.display = dpy;
1156 privList = XEHeadOfExtensionList(dataObj);
1157 found = XFindOnExtensionList(privList, info->codes->extension);
1158 if (found) {
1159 __glXUnlock();
1160 return (__GLXdisplayPrivate *) found->private_data;
1161 }
1162
1163 /* See if the versions are compatible */
1164 if (!QueryVersion(dpy, info->codes->major_opcode, &major, &minor)) {
1165 /* The client and server do not agree on versions. Punt. */
1166 __glXUnlock();
1167 return 0;
1168 }
1169
1170 /*
1171 ** Allocate memory for all the pieces needed for this buffer.
1172 */
1173 private = (XExtData *) Xmalloc(sizeof(XExtData));
1174 if (!private) {
1175 __glXUnlock();
1176 return 0;
1177 }
1178 dpyPriv = (__GLXdisplayPrivate *) Xmalloc(sizeof(__GLXdisplayPrivate));
1179 if (!dpyPriv) {
1180 __glXUnlock();
1181 Xfree((char*) private);
1182 return 0;
1183 }
1184
1185 /*
1186 ** Init the display private and then read in the screen config
1187 ** structures from the server.
1188 */
1189 dpyPriv->majorOpcode = info->codes->major_opcode;
1190 dpyPriv->majorVersion = major;
1191 dpyPriv->minorVersion = minor;
1192 dpyPriv->dpy = dpy;
1193
1194 dpyPriv->serverGLXvendor = 0x0;
1195 dpyPriv->serverGLXversion = 0x0;
1196
1197 #ifdef GLX_DIRECT_RENDERING
1198 /*
1199 ** Initialize the direct rendering per display data and functions.
1200 ** Note: This _must_ be done before calling any other DRI routines
1201 ** (e.g., those called in AllocAndFetchScreenConfigs).
1202 */
1203 if (getenv("LIBGL_ALWAYS_INDIRECT")) {
1204 /* Assinging zero here assures we'll never go direct */
1205 dpyPriv->driDisplay.private = 0;
1206 dpyPriv->driDisplay.destroyDisplay = 0;
1207 }
1208 else {
1209 dpyPriv->driDisplay.private =
1210 driCreateDisplay(dpy, &dpyPriv->driDisplay);
1211 }
1212 #endif
1213
1214 if (!AllocAndFetchScreenConfigs(dpy, dpyPriv)) {
1215 __glXUnlock();
1216 Xfree((char*) dpyPriv);
1217 Xfree((char*) private);
1218 return 0;
1219 }
1220
1221 /*
1222 ** Fill in the private structure. This is the actual structure that
1223 ** hangs off of the Display structure. Our private structure is
1224 ** referred to by this structure. Got that?
1225 */
1226 private->number = info->codes->extension;
1227 private->next = 0;
1228 private->free_private = __glXFreeDisplayPrivate;
1229 private->private_data = (char *) dpyPriv;
1230 XAddToExtensionList(privList, private);
1231
1232 if (dpyPriv->majorVersion == 1 && dpyPriv->minorVersion >= 1) {
1233 __glXClientInfo(dpy, dpyPriv->majorOpcode);
1234 }
1235 __glXUnlock();
1236
1237 return dpyPriv;
1238 }
1239
1240 /*
1241 ** Setup for sending a GLX command on dpy. Make sure the extension is
1242 ** initialized. Try to avoid calling __glXInitialize as its kinda slow.
1243 */
1244 CARD8 __glXSetupForCommand(Display *dpy)
1245 {
1246 GLXContext gc;
1247 __GLXdisplayPrivate *priv;
1248
1249 /* If this thread has a current context, flush its rendering commands */
1250 gc = __glXGetCurrentContext();
1251 if (gc->currentDpy) {
1252 /* Flush rendering buffer of the current context, if any */
1253 (void) __glXFlushRenderBuffer(gc, gc->pc);
1254
1255 if (gc->currentDpy == dpy) {
1256 /* Use opcode from gc because its right */
1257 INIT_MESA_SPARC
1258 return gc->majorOpcode;
1259 } else {
1260 /*
1261 ** Have to get info about argument dpy because it might be to
1262 ** a different server
1263 */
1264 }
1265 }
1266
1267 /* Forced to lookup extension via the slow initialize route */
1268 priv = __glXInitialize(dpy);
1269 if (!priv) {
1270 return 0;
1271 }
1272 return priv->majorOpcode;
1273 }
1274
1275 /**
1276 * Flush the drawing command transport buffer.
1277 *
1278 * \param ctx Context whose transport buffer is to be flushed.
1279 * \param pc Pointer to first unused buffer location.
1280 *
1281 * \todo
1282 * Modify this function to use \c ctx->pc instead of the explicit
1283 * \c pc parameter.
1284 */
1285 GLubyte *__glXFlushRenderBuffer(__GLXcontext *ctx, GLubyte *pc)
1286 {
1287 Display * const dpy = ctx->currentDpy;
1288 #ifdef USE_XCB
1289 xcb_connection_t *c = XGetXCBConnection(dpy);
1290 #else
1291 xGLXRenderReq *req;
1292 #endif /* USE_XCB */
1293 const GLint size = pc - ctx->buf;
1294
1295 if ( (dpy != NULL) && (size > 0) ) {
1296 #ifdef USE_XCB
1297 xcb_glx_render(c, ctx->currentContextTag, size, (char *)ctx->buf);
1298 #else
1299 /* Send the entire buffer as an X request */
1300 LockDisplay(dpy);
1301 GetReq(GLXRender,req);
1302 req->reqType = ctx->majorOpcode;
1303 req->glxCode = X_GLXRender;
1304 req->contextTag = ctx->currentContextTag;
1305 req->length += (size + 3) >> 2;
1306 _XSend(dpy, (char *)ctx->buf, size);
1307 UnlockDisplay(dpy);
1308 SyncHandle();
1309 #endif
1310 }
1311
1312 /* Reset pointer and return it */
1313 ctx->pc = ctx->buf;
1314 return ctx->pc;
1315 }
1316
1317
1318 /**
1319 * Send a portion of a GLXRenderLarge command to the server. The advantage of
1320 * this function over \c __glXSendLargeCommand is that callers can use the
1321 * data buffer in the GLX context and may be able to avoid allocating an
1322 * extra buffer. The disadvantage is the clients will have to do more
1323 * GLX protocol work (i.e., calculating \c totalRequests, etc.).
1324 *
1325 * \sa __glXSendLargeCommand
1326 *
1327 * \param gc GLX context
1328 * \param requestNumber Which part of the whole command is this? The first
1329 * request is 1.
1330 * \param totalRequests How many requests will there be?
1331 * \param data Command data.
1332 * \param dataLen Size, in bytes, of the command data.
1333 */
1334 void __glXSendLargeChunk(__GLXcontext *gc, GLint requestNumber,
1335 GLint totalRequests,
1336 const GLvoid * data, GLint dataLen)
1337 {
1338 Display *dpy = gc->currentDpy;
1339 #ifdef USE_XCB
1340 xcb_connection_t *c = XGetXCBConnection(dpy);
1341 xcb_glx_render_large(c, gc->currentContextTag, requestNumber, totalRequests, dataLen, data);
1342 #else
1343 xGLXRenderLargeReq *req;
1344
1345 if ( requestNumber == 1 ) {
1346 LockDisplay(dpy);
1347 }
1348
1349 GetReq(GLXRenderLarge,req);
1350 req->reqType = gc->majorOpcode;
1351 req->glxCode = X_GLXRenderLarge;
1352 req->contextTag = gc->currentContextTag;
1353 req->length += (dataLen + 3) >> 2;
1354 req->requestNumber = requestNumber;
1355 req->requestTotal = totalRequests;
1356 req->dataBytes = dataLen;
1357 Data(dpy, data, dataLen);
1358
1359 if ( requestNumber == totalRequests ) {
1360 UnlockDisplay(dpy);
1361 SyncHandle();
1362 }
1363 #endif /* USE_XCB */
1364 }
1365
1366
1367 /**
1368 * Send a command that is too large for the GLXRender protocol request.
1369 *
1370 * Send a large command, one that is too large for some reason to
1371 * send using the GLXRender protocol request. One reason to send
1372 * a large command is to avoid copying the data.
1373 *
1374 * \param ctx GLX context
1375 * \param header Header data.
1376 * \param headerLen Size, in bytes, of the header data. It is assumed that
1377 * the header data will always be small enough to fit in
1378 * a single X protocol packet.
1379 * \param data Command data.
1380 * \param dataLen Size, in bytes, of the command data.
1381 */
1382 void __glXSendLargeCommand(__GLXcontext *ctx,
1383 const GLvoid *header, GLint headerLen,
1384 const GLvoid *data, GLint dataLen)
1385 {
1386 GLint maxSize;
1387 GLint totalRequests, requestNumber;
1388
1389 /*
1390 ** Calculate the maximum amount of data can be stuffed into a single
1391 ** packet. sz_xGLXRenderReq is added because bufSize is the maximum
1392 ** packet size minus sz_xGLXRenderReq.
1393 */
1394 maxSize = (ctx->bufSize + sz_xGLXRenderReq) - sz_xGLXRenderLargeReq;
1395 totalRequests = 1 + (dataLen / maxSize);
1396 if (dataLen % maxSize) totalRequests++;
1397
1398 /*
1399 ** Send all of the command, except the large array, as one request.
1400 */
1401 assert( headerLen <= maxSize );
1402 __glXSendLargeChunk(ctx, 1, totalRequests, header, headerLen);
1403
1404 /*
1405 ** Send enough requests until the whole array is sent.
1406 */
1407 for ( requestNumber = 2 ; requestNumber <= (totalRequests - 1) ; requestNumber++ ) {
1408 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, maxSize);
1409 data = (const GLvoid *) (((const GLubyte *) data) + maxSize);
1410 dataLen -= maxSize;
1411 assert( dataLen > 0 );
1412 }
1413
1414 assert( dataLen <= maxSize );
1415 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, dataLen);
1416 }
1417
1418 /************************************************************************/
1419
1420 GLXContext glXGetCurrentContext(void)
1421 {
1422 GLXContext cx = __glXGetCurrentContext();
1423
1424 if (cx == &dummyContext) {
1425 return NULL;
1426 } else {
1427 return cx;
1428 }
1429 }
1430
1431 GLXDrawable glXGetCurrentDrawable(void)
1432 {
1433 GLXContext gc = __glXGetCurrentContext();
1434 return gc->currentDrawable;
1435 }
1436
1437
1438 /************************************************************************/
1439
1440 #ifdef GLX_DIRECT_RENDERING
1441 /* Return the DRI per screen structure */
1442 __DRIscreen *__glXFindDRIScreen(__DRInativeDisplay *dpy, int scrn)
1443 {
1444 __DRIscreen *pDRIScreen = NULL;
1445 XExtDisplayInfo *info = __glXFindDisplay(dpy);
1446 XExtData **privList, *found;
1447 __GLXdisplayPrivate *dpyPriv;
1448 XEDataObject dataObj;
1449
1450 __glXLock();
1451 dataObj.display = dpy;
1452 privList = XEHeadOfExtensionList(dataObj);
1453 found = XFindOnExtensionList(privList, info->codes->extension);
1454 __glXUnlock();
1455
1456 if (found) {
1457 dpyPriv = (__GLXdisplayPrivate *)found->private_data;
1458 pDRIScreen = &dpyPriv->screenConfigs[scrn].driScreen;
1459 }
1460
1461 return pDRIScreen;
1462 }
1463 #endif
1464
1465 /************************************************************************/
1466
1467 static Bool SendMakeCurrentRequest( Display *dpy, CARD8 opcode,
1468 GLXContextID gc, GLXContextTag old_gc, GLXDrawable draw, GLXDrawable read,
1469 xGLXMakeCurrentReply * reply );
1470
1471 /**
1472 * Sends a GLX protocol message to the specified display to make the context
1473 * and the drawables current.
1474 *
1475 * \param dpy Display to send the message to.
1476 * \param opcode Major opcode value for the display.
1477 * \param gc_id Context tag for the context to be made current.
1478 * \param draw Drawable ID for the "draw" drawable.
1479 * \param read Drawable ID for the "read" drawable.
1480 * \param reply Space to store the X-server's reply.
1481 *
1482 * \warning
1483 * This function assumes that \c dpy is locked with \c LockDisplay on entry.
1484 */
1485 static Bool SendMakeCurrentRequest(Display *dpy, CARD8 opcode,
1486 GLXContextID gc_id, GLXContextTag gc_tag,
1487 GLXDrawable draw, GLXDrawable read,
1488 xGLXMakeCurrentReply *reply)
1489 {
1490 Bool ret;
1491
1492
1493 LockDisplay(dpy);
1494
1495 if (draw == read) {
1496 xGLXMakeCurrentReq *req;
1497
1498 GetReq(GLXMakeCurrent,req);
1499 req->reqType = opcode;
1500 req->glxCode = X_GLXMakeCurrent;
1501 req->drawable = draw;
1502 req->context = gc_id;
1503 req->oldContextTag = gc_tag;
1504 }
1505 else {
1506 __GLXdisplayPrivate *priv = __glXInitialize(dpy);
1507
1508 /* If the server can support the GLX 1.3 version, we should
1509 * perfer that. Not only that, some servers support GLX 1.3 but
1510 * not the SGI extension.
1511 */
1512
1513 if ((priv->majorVersion > 1) || (priv->minorVersion >= 3)) {
1514 xGLXMakeContextCurrentReq *req;
1515
1516 GetReq(GLXMakeContextCurrent,req);
1517 req->reqType = opcode;
1518 req->glxCode = X_GLXMakeContextCurrent;
1519 req->drawable = draw;
1520 req->readdrawable = read;
1521 req->context = gc_id;
1522 req->oldContextTag = gc_tag;
1523 }
1524 else {
1525 xGLXVendorPrivateWithReplyReq *vpreq;
1526 xGLXMakeCurrentReadSGIReq *req;
1527
1528 GetReqExtra(GLXVendorPrivateWithReply,
1529 sz_xGLXMakeCurrentReadSGIReq-sz_xGLXVendorPrivateWithReplyReq,vpreq);
1530 req = (xGLXMakeCurrentReadSGIReq *)vpreq;
1531 req->reqType = opcode;
1532 req->glxCode = X_GLXVendorPrivateWithReply;
1533 req->vendorCode = X_GLXvop_MakeCurrentReadSGI;
1534 req->drawable = draw;
1535 req->readable = read;
1536 req->context = gc_id;
1537 req->oldContextTag = gc_tag;
1538 }
1539 }
1540
1541 ret = _XReply(dpy, (xReply*) reply, 0, False);
1542
1543 UnlockDisplay(dpy);
1544 SyncHandle();
1545
1546 return ret;
1547 }
1548
1549
1550 #ifdef GLX_DIRECT_RENDERING
1551 static Bool BindContextWrapper( Display *dpy, GLXContext gc,
1552 GLXDrawable draw, GLXDrawable read )
1553 {
1554 return (*gc->driContext.bindContext)(dpy, gc->screen, draw, read,
1555 & gc->driContext);
1556 }
1557
1558
1559 static Bool UnbindContextWrapper( GLXContext gc )
1560 {
1561 return (*gc->driContext.unbindContext)(gc->currentDpy, gc->screen,
1562 gc->currentDrawable,
1563 gc->currentReadable,
1564 & gc->driContext );
1565 }
1566 #endif /* GLX_DIRECT_RENDERING */
1567
1568
1569 /**
1570 * Make a particular context current.
1571 *
1572 * \note This is in this file so that it can access dummyContext.
1573 */
1574 USED static Bool MakeContextCurrent(Display *dpy, GLXDrawable draw,
1575 GLXDrawable read, GLXContext gc)
1576 {
1577 xGLXMakeCurrentReply reply;
1578 const GLXContext oldGC = __glXGetCurrentContext();
1579 const CARD8 opcode = __glXSetupForCommand(dpy);
1580 const CARD8 oldOpcode = ((gc == oldGC) || (oldGC == &dummyContext))
1581 ? opcode : __glXSetupForCommand(oldGC->currentDpy);
1582 Bool bindReturnValue;
1583
1584
1585 if (!opcode || !oldOpcode) {
1586 return GL_FALSE;
1587 }
1588
1589 /* Make sure that the new context has a nonzero ID. In the request,
1590 * a zero context ID is used only to mean that we bind to no current
1591 * context.
1592 */
1593 if ((gc != NULL) && (gc->xid == None)) {
1594 return GL_FALSE;
1595 }
1596
1597 #ifndef GLX_DIRECT_RENDERING
1598 if (gc && gc->isDirect) {
1599 return GL_FALSE;
1600 }
1601 #endif
1602
1603 _glapi_check_multithread();
1604
1605 #ifdef GLX_DIRECT_RENDERING
1606 /* Bind the direct rendering context to the drawable */
1607 if (gc && gc->isDirect) {
1608 bindReturnValue = (gc->driContext.private)
1609 ? BindContextWrapper(dpy, gc, draw, read)
1610 : False;
1611 } else
1612 #endif
1613 {
1614 /* Send a glXMakeCurrent request to bind the new context. */
1615 bindReturnValue =
1616 SendMakeCurrentRequest(dpy, opcode, gc ? gc->xid : None,
1617 ((dpy != oldGC->currentDpy) || oldGC->isDirect)
1618 ? None : oldGC->currentContextTag,
1619 draw, read, &reply);
1620 }
1621
1622
1623 if (!bindReturnValue) {
1624 return False;
1625 }
1626
1627 if ((dpy != oldGC->currentDpy || (gc && gc->isDirect)) &&
1628 !oldGC->isDirect && oldGC != &dummyContext) {
1629 xGLXMakeCurrentReply dummy_reply;
1630
1631 /* We are either switching from one dpy to another and have to
1632 * send a request to the previous dpy to unbind the previous
1633 * context, or we are switching away from a indirect context to
1634 * a direct context and have to send a request to the dpy to
1635 * unbind the previous context.
1636 */
1637 (void) SendMakeCurrentRequest(oldGC->currentDpy, oldOpcode, None,
1638 oldGC->currentContextTag, None, None,
1639 & dummy_reply);
1640 }
1641 #ifdef GLX_DIRECT_RENDERING
1642 else if (oldGC->isDirect && oldGC->driContext.private) {
1643 (void) UnbindContextWrapper(oldGC);
1644 }
1645 #endif
1646
1647
1648 /* Update our notion of what is current */
1649 __glXLock();
1650 if (gc == oldGC) {
1651 /* Even though the contexts are the same the drawable might have
1652 * changed. Note that gc cannot be the dummy, and that oldGC
1653 * cannot be NULL, therefore if they are the same, gc is not
1654 * NULL and not the dummy.
1655 */
1656 gc->currentDrawable = draw;
1657 gc->currentReadable = read;
1658 } else {
1659 if (oldGC != &dummyContext) {
1660 /* Old current context is no longer current to anybody */
1661 oldGC->currentDpy = 0;
1662 oldGC->currentDrawable = None;
1663 oldGC->currentReadable = None;
1664 oldGC->currentContextTag = 0;
1665
1666 if (oldGC->xid == None) {
1667 /* We are switching away from a context that was
1668 * previously destroyed, so we need to free the memory
1669 * for the old handle.
1670 */
1671 #ifdef GLX_DIRECT_RENDERING
1672 /* Destroy the old direct rendering context */
1673 if (oldGC->isDirect) {
1674 if (oldGC->driContext.private) {
1675 (*oldGC->driContext.destroyContext)
1676 (dpy, oldGC->screen, oldGC->driContext.private);
1677 oldGC->driContext.private = NULL;
1678 }
1679 }
1680 #endif
1681 __glXFreeContext(oldGC);
1682 }
1683 }
1684 if (gc) {
1685 __glXSetCurrentContext(gc);
1686
1687 gc->currentDpy = dpy;
1688 gc->currentDrawable = draw;
1689 gc->currentReadable = read;
1690
1691 if (!gc->isDirect) {
1692 if (!IndirectAPI)
1693 IndirectAPI = __glXNewIndirectAPI();
1694 _glapi_set_dispatch(IndirectAPI);
1695
1696 #ifdef GLX_USE_APPLEGL
1697 do {
1698 extern void XAppleDRIUseIndirectDispatch(void);
1699 XAppleDRIUseIndirectDispatch();
1700 } while (0);
1701 #endif
1702
1703 __GLXattribute *state =
1704 (__GLXattribute *)(gc->client_state_private);
1705
1706 gc->currentContextTag = reply.contextTag;
1707 if (state->array_state == NULL) {
1708 (void) glGetString(GL_EXTENSIONS);
1709 (void) glGetString(GL_VERSION);
1710 __glXInitVertexArrayState(gc);
1711 }
1712 }
1713 else {
1714 gc->currentContextTag = -1;
1715 }
1716 } else {
1717 __glXSetCurrentContext(&dummyContext);
1718 #ifdef GLX_DIRECT_RENDERING
1719 _glapi_set_dispatch(NULL); /* no-op functions */
1720 #endif
1721 }
1722 }
1723 __glXUnlock();
1724 return GL_TRUE;
1725 }
1726
1727
1728 PUBLIC Bool glXMakeCurrent(Display *dpy, GLXDrawable draw, GLXContext gc)
1729 {
1730 return MakeContextCurrent( dpy, draw, draw, gc );
1731 }
1732
1733 PUBLIC GLX_ALIAS(Bool, glXMakeCurrentReadSGI,
1734 (Display *dpy, GLXDrawable d, GLXDrawable r, GLXContext ctx),
1735 (dpy, d, r, ctx), MakeContextCurrent)
1736
1737 PUBLIC GLX_ALIAS(Bool, glXMakeContextCurrent,
1738 (Display *dpy, GLXDrawable d, GLXDrawable r, GLXContext ctx),
1739 (dpy, d, r, ctx), MakeContextCurrent)
1740
1741
1742 #ifdef DEBUG
1743 void __glXDumpDrawBuffer(__GLXcontext *ctx)
1744 {
1745 GLubyte *p = ctx->buf;
1746 GLubyte *end = ctx->pc;
1747 GLushort opcode, length;
1748
1749 while (p < end) {
1750 /* Fetch opcode */
1751 opcode = *((GLushort*) p);
1752 length = *((GLushort*) (p + 2));
1753 printf("%2x: %5d: ", opcode, length);
1754 length -= 4;
1755 p += 4;
1756 while (length > 0) {
1757 printf("%08x ", *((unsigned *) p));
1758 p += 4;
1759 length -= 4;
1760 }
1761 printf("\n");
1762 }
1763 }
1764 #endif
1765
1766 #ifdef USE_SPARC_ASM
1767 /*
1768 * Used only when we are sparc, using sparc assembler.
1769 *
1770 */
1771
1772 static void
1773 _glx_mesa_init_sparc_glapi_relocs(void)
1774 {
1775 unsigned int *insn_ptr, *end_ptr;
1776 unsigned long disp_addr;
1777
1778 insn_ptr = &_mesa_sparc_glapi_begin;
1779 end_ptr = &_mesa_sparc_glapi_end;
1780 disp_addr = (unsigned long) &_glapi_Dispatch;
1781
1782 /*
1783 * Verbatim from Mesa sparc.c. It's needed because there doesn't
1784 * seem to be a better way to do this:
1785 *
1786 * UNCONDITIONAL_JUMP ( (*_glapi_Dispatch) + entry_offset )
1787 *
1788 * This code is patching in the ADDRESS of the pointer to the
1789 * dispatch table. Hence, it must be called exactly once, because
1790 * that address is not going to change.
1791 *
1792 * What it points to can change, but Mesa (and hence, we) assume
1793 * that there is only one pointer.
1794 *
1795 */
1796 while (insn_ptr < end_ptr) {
1797 #if ( defined(__sparc_v9__) && ( !defined(__linux__) || defined(__linux_64__) ) )
1798 /*
1799 This code patches for 64-bit addresses. This had better
1800 not happen for Sparc/Linux, no matter what architecture we
1801 are building for. So, don't do this.
1802
1803 The 'defined(__linux_64__)' is used here as a placeholder for
1804 when we do do 64-bit usermode on sparc linux.
1805 */
1806 insn_ptr[0] |= (disp_addr >> (32 + 10));
1807 insn_ptr[1] |= ((disp_addr & 0xffffffff) >> 10);
1808 __glapi_sparc_icache_flush(&insn_ptr[0]);
1809 insn_ptr[2] |= ((disp_addr >> 32) & ((1 << 10) - 1));
1810 insn_ptr[3] |= (disp_addr & ((1 << 10) - 1));
1811 __glapi_sparc_icache_flush(&insn_ptr[2]);
1812 insn_ptr += 11;
1813 #else
1814 insn_ptr[0] |= (disp_addr >> 10);
1815 insn_ptr[1] |= (disp_addr & ((1 << 10) - 1));
1816 __glapi_sparc_icache_flush(&insn_ptr[0]);
1817 insn_ptr += 5;
1818 #endif
1819 }
1820 }
1821 #endif /* sparc ASM in use */
1822