fix a memleak in DestroyContext()
[mesa.git] / src / mesa / drivers / x11 / fakeglx.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5.2
4 *
5 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 /*
27 * This is an emulation of the GLX API which allows Mesa/GLX-based programs
28 * to run on X servers which do not have the real GLX extension.
29 *
30 * Thanks to the contributors:
31 *
32 * Initial version: Philip Brown (phil@bolthole.com)
33 * Better glXGetConfig() support: Armin Liebchen (liebchen@asylum.cs.utah.edu)
34 * Further visual-handling refinements: Wolfram Gloger
35 * (wmglo@Dent.MED.Uni-Muenchen.DE).
36 *
37 * Notes:
38 * Don't be fooled, stereo isn't supported yet.
39 */
40
41
42
43 #include "glxheader.h"
44 #include "glxapi.h"
45 #include "GL/xmesa.h"
46 #include "context.h"
47 #include "config.h"
48 #include "macros.h"
49 #include "imports.h"
50 #include "mtypes.h"
51 #include "version.h"
52 #include "xfonts.h"
53 #include "xmesaP.h"
54
55 #ifdef __VMS
56 #define _mesa_sprintf sprintf
57 #endif
58
59 /* This indicates the client-side GLX API and GLX encoder version. */
60 #define CLIENT_MAJOR_VERSION 1
61 #define CLIENT_MINOR_VERSION 4 /* but don't have 1.3's pbuffers, etc yet */
62
63 /* This indicates the server-side GLX decoder version.
64 * GLX 1.4 indicates OpenGL 1.3 support
65 */
66 #define SERVER_MAJOR_VERSION 1
67 #define SERVER_MINOR_VERSION 4
68
69 /* This is appended onto the glXGetClient/ServerString version strings. */
70 #define MESA_GLX_VERSION "Mesa " MESA_VERSION_STRING
71
72 /* Who implemented this GLX? */
73 #define VENDOR "Brian Paul"
74
75 #define EXTENSIONS \
76 "GLX_MESA_set_3dfx_mode " \
77 "GLX_MESA_copy_sub_buffer " \
78 "GLX_MESA_pixmap_colormap " \
79 "GLX_MESA_release_buffers " \
80 "GLX_ARB_get_proc_address " \
81 "GLX_EXT_visual_info " \
82 "GLX_EXT_visual_rating " \
83 /*"GLX_SGI_video_sync "*/ \
84 "GLX_SGIX_fbconfig " \
85 "GLX_SGIX_pbuffer "
86
87 /*
88 * Our fake GLX context will contain a "real" GLX context and an XMesa context.
89 *
90 * Note that a pointer to a __GLXcontext is a pointer to a fake_glx_context,
91 * and vice versa.
92 *
93 * We really just need this structure in order to make the libGL functions
94 * glXGetCurrentContext(), glXGetCurrentDrawable() and glXGetCurrentDisplay()
95 * work correctly.
96 */
97 struct fake_glx_context {
98 __GLXcontext glxContext; /* this MUST be first! */
99 XMesaContext xmesaContext;
100 };
101
102
103
104 /**********************************************************************/
105 /*** GLX Visual Code ***/
106 /**********************************************************************/
107
108 #define DONT_CARE -1
109
110
111 static XMesaVisual *VisualTable = NULL;
112 static int NumVisuals = 0;
113
114
115 /*
116 * This struct and some code fragments borrowed
117 * from Mark Kilgard's GLUT library.
118 */
119 typedef struct _OverlayInfo {
120 /* Avoid 64-bit portability problems by being careful to use
121 longs due to the way XGetWindowProperty is specified. Note
122 that these parameters are passed as CARD32s over X
123 protocol. */
124 unsigned long overlay_visual;
125 long transparent_type;
126 long value;
127 long layer;
128 } OverlayInfo;
129
130
131
132 /* Macro to handle c_class vs class field name in XVisualInfo struct */
133 #if defined(__cplusplus) || defined(c_plusplus)
134 #define CLASS c_class
135 #else
136 #define CLASS class
137 #endif
138
139
140
141 /*
142 * Test if the given XVisualInfo is usable for Mesa rendering.
143 */
144 static GLboolean
145 is_usable_visual( XVisualInfo *vinfo )
146 {
147 switch (vinfo->CLASS) {
148 case StaticGray:
149 case GrayScale:
150 /* Any StaticGray/GrayScale visual works in RGB or CI mode */
151 return GL_TRUE;
152 case StaticColor:
153 case PseudoColor:
154 /* Any StaticColor/PseudoColor visual of at least 4 bits */
155 if (vinfo->depth>=4) {
156 return GL_TRUE;
157 }
158 else {
159 return GL_FALSE;
160 }
161 case TrueColor:
162 case DirectColor:
163 /* Any depth of TrueColor or DirectColor works in RGB mode */
164 return GL_TRUE;
165 default:
166 /* This should never happen */
167 return GL_FALSE;
168 }
169 }
170
171
172
173 /**
174 * Get an array OverlayInfo records for specified screen.
175 * \param dpy the display
176 * \param screen screen number
177 * \param numOverlays returns numver of OverlayInfo records
178 * \return pointer to OverlayInfo array, free with XFree()
179 */
180 static OverlayInfo *
181 GetOverlayInfo(Display *dpy, int screen, int *numOverlays)
182 {
183 Atom overlayVisualsAtom;
184 Atom actualType;
185 Status status;
186 unsigned char *ovInfo;
187 unsigned long sizeData, bytesLeft;
188 int actualFormat;
189
190 /*
191 * The SERVER_OVERLAY_VISUALS property on the root window contains
192 * a list of overlay visuals. Get that list now.
193 */
194 overlayVisualsAtom = XInternAtom(dpy,"SERVER_OVERLAY_VISUALS", True);
195 if (overlayVisualsAtom == None) {
196 return 0;
197 }
198
199 status = XGetWindowProperty(dpy, RootWindow(dpy, screen),
200 overlayVisualsAtom, 0L, (long) 10000, False,
201 overlayVisualsAtom, &actualType, &actualFormat,
202 &sizeData, &bytesLeft,
203 &ovInfo);
204
205 if (status != Success || actualType != overlayVisualsAtom ||
206 actualFormat != 32 || sizeData < 4) {
207 /* something went wrong */
208 XFree((void *) ovInfo);
209 *numOverlays = 0;
210 return NULL;
211 }
212
213 *numOverlays = sizeData / 4;
214 return (OverlayInfo *) ovInfo;
215 }
216
217
218
219 /**
220 * Return the level (overlay, normal, underlay) of a given XVisualInfo.
221 * Input: dpy - the X display
222 * vinfo - the XVisualInfo to test
223 * Return: level of the visual:
224 * 0 = normal planes
225 * >0 = overlay planes
226 * <0 = underlay planes
227 */
228 static int
229 level_of_visual( Display *dpy, XVisualInfo *vinfo )
230 {
231 OverlayInfo *overlay_info;
232 int numOverlaysPerScreen, i;
233
234 overlay_info = GetOverlayInfo(dpy, vinfo->screen, &numOverlaysPerScreen);
235 if (!overlay_info) {
236 return 0;
237 }
238
239 /* search the overlay visual list for the visual ID of interest */
240 for (i = 0; i < numOverlaysPerScreen; i++) {
241 const OverlayInfo *ov = overlay_info + i;
242 if (ov->overlay_visual == vinfo->visualid) {
243 /* found the visual */
244 if (/*ov->transparent_type==1 &&*/ ov->layer!=0) {
245 int level = ov->layer;
246 XFree((void *) overlay_info);
247 return level;
248 }
249 else {
250 XFree((void *) overlay_info);
251 return 0;
252 }
253 }
254 }
255
256 /* The visual ID was not found in the overlay list. */
257 XFree((void *) overlay_info);
258 return 0;
259 }
260
261
262
263
264 /*
265 * Given an XVisualInfo and RGB, Double, and Depth buffer flags, save the
266 * configuration in our list of GLX visuals.
267 */
268 static XMesaVisual
269 save_glx_visual( Display *dpy, XVisualInfo *vinfo,
270 GLboolean rgbFlag, GLboolean alphaFlag, GLboolean dbFlag,
271 GLboolean stereoFlag,
272 GLint depth_size, GLint stencil_size,
273 GLint accumRedSize, GLint accumGreenSize,
274 GLint accumBlueSize, GLint accumAlphaSize,
275 GLint level, GLint numAuxBuffers )
276 {
277 GLboolean ximageFlag = GL_TRUE;
278 XMesaVisual xmvis;
279 GLint i;
280 GLboolean comparePointers;
281
282 if (dbFlag) {
283 /* Check if the MESA_BACK_BUFFER env var is set */
284 char *backbuffer = _mesa_getenv("MESA_BACK_BUFFER");
285 if (backbuffer) {
286 if (backbuffer[0]=='p' || backbuffer[0]=='P') {
287 ximageFlag = GL_FALSE;
288 }
289 else if (backbuffer[0]=='x' || backbuffer[0]=='X') {
290 ximageFlag = GL_TRUE;
291 }
292 else {
293 _mesa_warning(NULL, "Mesa: invalid value for MESA_BACK_BUFFER environment variable, using an XImage.");
294 }
295 }
296 }
297
298 /* Comparing IDs uses less memory but sometimes fails. */
299 /* XXX revisit this after 3.0 is finished. */
300 if (_mesa_getenv("MESA_GLX_VISUAL_HACK"))
301 comparePointers = GL_TRUE;
302 else
303 comparePointers = GL_FALSE;
304
305 /* Force the visual to have an alpha channel */
306 if (rgbFlag && _mesa_getenv("MESA_GLX_FORCE_ALPHA"))
307 alphaFlag = GL_TRUE;
308
309 /* First check if a matching visual is already in the list */
310 for (i=0; i<NumVisuals; i++) {
311 XMesaVisual v = VisualTable[i];
312 if (v->display == dpy
313 && v->mesa_visual.level == level
314 && v->mesa_visual.numAuxBuffers == numAuxBuffers
315 && v->ximage_flag == ximageFlag
316 && v->mesa_visual.rgbMode == rgbFlag
317 && v->mesa_visual.doubleBufferMode == dbFlag
318 && v->mesa_visual.stereoMode == stereoFlag
319 && (v->mesa_visual.alphaBits > 0) == alphaFlag
320 && (v->mesa_visual.depthBits >= depth_size || depth_size == 0)
321 && (v->mesa_visual.stencilBits >= stencil_size || stencil_size == 0)
322 && (v->mesa_visual.accumRedBits >= accumRedSize || accumRedSize == 0)
323 && (v->mesa_visual.accumGreenBits >= accumGreenSize || accumGreenSize == 0)
324 && (v->mesa_visual.accumBlueBits >= accumBlueSize || accumBlueSize == 0)
325 && (v->mesa_visual.accumAlphaBits >= accumAlphaSize || accumAlphaSize == 0)) {
326 /* now either compare XVisualInfo pointers or visual IDs */
327 if ((!comparePointers && v->visinfo->visualid == vinfo->visualid)
328 || (comparePointers && v->vishandle == vinfo)) {
329 return v;
330 }
331 }
332 }
333
334 /* Create a new visual and add it to the list. */
335
336 xmvis = XMesaCreateVisual( dpy, vinfo, rgbFlag, alphaFlag, dbFlag,
337 stereoFlag, ximageFlag,
338 depth_size, stencil_size,
339 accumRedSize, accumBlueSize,
340 accumBlueSize, accumAlphaSize, 0, level,
341 GLX_NONE_EXT );
342 if (xmvis) {
343 /* Save a copy of the pointer now so we can find this visual again
344 * if we need to search for it in find_glx_visual().
345 */
346 xmvis->vishandle = vinfo;
347 /* Allocate more space for additional visual */
348 VisualTable = (XMesaVisual *) _mesa_realloc( VisualTable,
349 sizeof(XMesaVisual) * NumVisuals,
350 sizeof(XMesaVisual) * (NumVisuals + 1));
351 /* add xmvis to the list */
352 VisualTable[NumVisuals] = xmvis;
353 NumVisuals++;
354 /* XXX minor hack, because XMesaCreateVisual doesn't support an
355 * aux buffers parameter.
356 */
357 xmvis->mesa_visual.numAuxBuffers = numAuxBuffers;
358 }
359 return xmvis;
360 }
361
362
363 /**
364 * Return the default number of bits for the Z buffer.
365 * If defined, use the MESA_GLX_DEPTH_BITS env var value.
366 * Otherwise, use the DEFAULT_SOFTWARE_DEPTH_BITS constant.
367 * XXX probably do the same thing for stencil, accum, etc.
368 */
369 static GLint
370 default_depth_bits(void)
371 {
372 int zBits;
373 const char *zEnv = _mesa_getenv("MESA_GLX_DEPTH_BITS");
374 if (zEnv)
375 zBits = _mesa_atoi(zEnv);
376 else
377 zBits = DEFAULT_SOFTWARE_DEPTH_BITS;
378 return zBits;
379 }
380
381 static GLint
382 default_alpha_bits(void)
383 {
384 int aBits;
385 const char *aEnv = _mesa_getenv("MESA_GLX_ALPHA_BITS");
386 if (aEnv)
387 aBits = _mesa_atoi(aEnv);
388 else
389 aBits = 0;
390 return aBits;
391 }
392
393 static GLint
394 default_accum_bits(void)
395 {
396 return 16;
397 }
398
399
400
401 /*
402 * Create a GLX visual from a regular XVisualInfo.
403 * This is called when Fake GLX is given an XVisualInfo which wasn't
404 * returned by glXChooseVisual. Since this is the first time we're
405 * considering this visual we'll take a guess at reasonable values
406 * for depth buffer size, stencil size, accum size, etc.
407 * This is the best we can do with a client-side emulation of GLX.
408 */
409 static XMesaVisual
410 create_glx_visual( Display *dpy, XVisualInfo *visinfo )
411 {
412 int vislevel;
413 GLint zBits = default_depth_bits();
414 GLint accBits = default_accum_bits();
415 GLboolean alphaFlag = default_alpha_bits() > 0;
416
417 vislevel = level_of_visual( dpy, visinfo );
418 if (vislevel) {
419 /* Configure this visual as a CI, single-buffered overlay */
420 return save_glx_visual( dpy, visinfo,
421 GL_FALSE, /* rgb */
422 GL_FALSE, /* alpha */
423 GL_FALSE, /* double */
424 GL_FALSE, /* stereo */
425 0, /* depth bits */
426 0, /* stencil bits */
427 0,0,0,0, /* accum bits */
428 vislevel, /* level */
429 0 /* numAux */
430 );
431 }
432 else if (is_usable_visual( visinfo )) {
433 if (_mesa_getenv("MESA_GLX_FORCE_CI")) {
434 /* Configure this visual as a COLOR INDEX visual. */
435 return save_glx_visual( dpy, visinfo,
436 GL_FALSE, /* rgb */
437 GL_FALSE, /* alpha */
438 GL_TRUE, /* double */
439 GL_FALSE, /* stereo */
440 zBits,
441 STENCIL_BITS,
442 0, 0, 0, 0, /* accum bits */
443 0, /* level */
444 0 /* numAux */
445 );
446 }
447 else {
448 /* Configure this visual as RGB, double-buffered, depth-buffered. */
449 /* This is surely wrong for some people's needs but what else */
450 /* can be done? They should use glXChooseVisual(). */
451 return save_glx_visual( dpy, visinfo,
452 GL_TRUE, /* rgb */
453 alphaFlag, /* alpha */
454 GL_TRUE, /* double */
455 GL_FALSE, /* stereo */
456 zBits,
457 STENCIL_BITS,
458 accBits, /* r */
459 accBits, /* g */
460 accBits, /* b */
461 accBits, /* a */
462 0, /* level */
463 0 /* numAux */
464 );
465 }
466 }
467 else {
468 _mesa_warning(NULL, "Mesa: error in glXCreateContext: bad visual\n");
469 return NULL;
470 }
471 }
472
473
474
475 /*
476 * Find the GLX visual associated with an XVisualInfo.
477 */
478 static XMesaVisual
479 find_glx_visual( Display *dpy, XVisualInfo *vinfo )
480 {
481 int i;
482
483 /* try to match visual id */
484 for (i=0;i<NumVisuals;i++) {
485 if (VisualTable[i]->display==dpy
486 && VisualTable[i]->visinfo->visualid == vinfo->visualid) {
487 return VisualTable[i];
488 }
489 }
490
491 /* if that fails, try to match pointers */
492 for (i=0;i<NumVisuals;i++) {
493 if (VisualTable[i]->display==dpy && VisualTable[i]->vishandle==vinfo) {
494 return VisualTable[i];
495 }
496 }
497
498 return NULL;
499 }
500
501
502
503 /**
504 * Return the transparent pixel value for a GLX visual.
505 * Input: glxvis - the glx_visual
506 * Return: a pixel value or -1 if no transparent pixel
507 */
508 static int
509 transparent_pixel( XMesaVisual glxvis )
510 {
511 Display *dpy = glxvis->display;
512 XVisualInfo *vinfo = glxvis->visinfo;
513 OverlayInfo *overlay_info;
514 int numOverlaysPerScreen, i;
515
516 overlay_info = GetOverlayInfo(dpy, vinfo->screen, &numOverlaysPerScreen);
517 if (!overlay_info) {
518 return -1;
519 }
520
521 for (i = 0; i < numOverlaysPerScreen; i++) {
522 const OverlayInfo *ov = overlay_info + i;
523 if (ov->overlay_visual == vinfo->visualid) {
524 /* found it! */
525 if (ov->transparent_type == 0) {
526 /* type 0 indicates no transparency */
527 XFree((void *) overlay_info);
528 return -1;
529 }
530 else {
531 /* ov->value is the transparent pixel */
532 XFree((void *) overlay_info);
533 return ov->value;
534 }
535 }
536 }
537
538 /* The visual ID was not found in the overlay list. */
539 XFree((void *) overlay_info);
540 return -1;
541 }
542
543
544
545 /**
546 * Try to get an X visual which matches the given arguments.
547 */
548 static XVisualInfo *
549 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
550 {
551 XVisualInfo temp, *vis;
552 long mask;
553 int n;
554 unsigned int default_depth;
555 int default_class;
556
557 mask = VisualScreenMask | VisualDepthMask | VisualClassMask;
558 temp.screen = scr;
559 temp.depth = depth;
560 temp.CLASS = xclass;
561
562 default_depth = DefaultDepth(dpy,scr);
563 default_class = DefaultVisual(dpy,scr)->CLASS;
564
565 if (depth==default_depth && xclass==default_class) {
566 /* try to get root window's visual */
567 temp.visualid = DefaultVisual(dpy,scr)->visualid;
568 mask |= VisualIDMask;
569 }
570
571 vis = XGetVisualInfo( dpy, mask, &temp, &n );
572
573 /* In case bits/pixel > 24, make sure color channels are still <=8 bits.
574 * An SGI Infinite Reality system, for example, can have 30bpp pixels:
575 * 10 bits per color channel. Mesa's limited to a max of 8 bits/channel.
576 */
577 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
578 if (_mesa_bitcount((GLuint) vis->red_mask ) <= 8 &&
579 _mesa_bitcount((GLuint) vis->green_mask) <= 8 &&
580 _mesa_bitcount((GLuint) vis->blue_mask ) <= 8) {
581 return vis;
582 }
583 else {
584 XFree((void *) vis);
585 return NULL;
586 }
587 }
588
589 return vis;
590 }
591
592
593
594 /*
595 * Retrieve the value of the given environment variable and find
596 * the X visual which matches it.
597 * Input: dpy - the display
598 * screen - the screen number
599 * varname - the name of the environment variable
600 * Return: an XVisualInfo pointer to NULL if error.
601 */
602 static XVisualInfo *
603 get_env_visual(Display *dpy, int scr, const char *varname)
604 {
605 char value[100], type[100];
606 int depth, xclass = -1;
607 XVisualInfo *vis;
608
609 if (!_mesa_getenv( varname )) {
610 return NULL;
611 }
612
613 _mesa_strncpy( value, _mesa_getenv(varname), 100 );
614 value[99] = 0;
615
616 sscanf( value, "%s %d", type, &depth );
617
618 if (_mesa_strcmp(type,"TrueColor")==0) xclass = TrueColor;
619 else if (_mesa_strcmp(type,"DirectColor")==0) xclass = DirectColor;
620 else if (_mesa_strcmp(type,"PseudoColor")==0) xclass = PseudoColor;
621 else if (_mesa_strcmp(type,"StaticColor")==0) xclass = StaticColor;
622 else if (_mesa_strcmp(type,"GrayScale")==0) xclass = GrayScale;
623 else if (_mesa_strcmp(type,"StaticGray")==0) xclass = StaticGray;
624
625 if (xclass>-1 && depth>0) {
626 vis = get_visual( dpy, scr, depth, xclass );
627 if (vis) {
628 return vis;
629 }
630 }
631
632 _mesa_warning(NULL, "GLX unable to find visual class=%s, depth=%d.",
633 type, depth);
634
635 return NULL;
636 }
637
638
639
640 /*
641 * Select an X visual which satisfies the RGBA/CI flag and minimum depth.
642 * Input: dpy, screen - X display and screen number
643 * rgba - GL_TRUE = RGBA mode, GL_FALSE = CI mode
644 * min_depth - minimum visual depth
645 * preferred_class - preferred GLX visual class or DONT_CARE
646 * Return: pointer to an XVisualInfo or NULL.
647 */
648 static XVisualInfo *
649 choose_x_visual( Display *dpy, int screen, GLboolean rgba, int min_depth,
650 int preferred_class )
651 {
652 XVisualInfo *vis;
653 int xclass, visclass = 0;
654 int depth;
655
656 if (rgba) {
657 Atom hp_cr_maps = XInternAtom(dpy, "_HP_RGB_SMOOTH_MAP_LIST", True);
658 /* First see if the MESA_RGB_VISUAL env var is defined */
659 vis = get_env_visual( dpy, screen, "MESA_RGB_VISUAL" );
660 if (vis) {
661 return vis;
662 }
663 /* Otherwise, search for a suitable visual */
664 if (preferred_class==DONT_CARE) {
665 for (xclass=0;xclass<6;xclass++) {
666 switch (xclass) {
667 case 0: visclass = TrueColor; break;
668 case 1: visclass = DirectColor; break;
669 case 2: visclass = PseudoColor; break;
670 case 3: visclass = StaticColor; break;
671 case 4: visclass = GrayScale; break;
672 case 5: visclass = StaticGray; break;
673 }
674 if (min_depth==0) {
675 /* start with shallowest */
676 for (depth=0;depth<=32;depth++) {
677 if (visclass==TrueColor && depth==8 && !hp_cr_maps) {
678 /* Special case: try to get 8-bit PseudoColor before */
679 /* 8-bit TrueColor */
680 vis = get_visual( dpy, screen, 8, PseudoColor );
681 if (vis) {
682 return vis;
683 }
684 }
685 vis = get_visual( dpy, screen, depth, visclass );
686 if (vis) {
687 return vis;
688 }
689 }
690 }
691 else {
692 /* start with deepest */
693 for (depth=32;depth>=min_depth;depth--) {
694 if (visclass==TrueColor && depth==8 && !hp_cr_maps) {
695 /* Special case: try to get 8-bit PseudoColor before */
696 /* 8-bit TrueColor */
697 vis = get_visual( dpy, screen, 8, PseudoColor );
698 if (vis) {
699 return vis;
700 }
701 }
702 vis = get_visual( dpy, screen, depth, visclass );
703 if (vis) {
704 return vis;
705 }
706 }
707 }
708 }
709 }
710 else {
711 /* search for a specific visual class */
712 switch (preferred_class) {
713 case GLX_TRUE_COLOR_EXT: visclass = TrueColor; break;
714 case GLX_DIRECT_COLOR_EXT: visclass = DirectColor; break;
715 case GLX_PSEUDO_COLOR_EXT: visclass = PseudoColor; break;
716 case GLX_STATIC_COLOR_EXT: visclass = StaticColor; break;
717 case GLX_GRAY_SCALE_EXT: visclass = GrayScale; break;
718 case GLX_STATIC_GRAY_EXT: visclass = StaticGray; break;
719 default: return NULL;
720 }
721 if (min_depth==0) {
722 /* start with shallowest */
723 for (depth=0;depth<=32;depth++) {
724 vis = get_visual( dpy, screen, depth, visclass );
725 if (vis) {
726 return vis;
727 }
728 }
729 }
730 else {
731 /* start with deepest */
732 for (depth=32;depth>=min_depth;depth--) {
733 vis = get_visual( dpy, screen, depth, visclass );
734 if (vis) {
735 return vis;
736 }
737 }
738 }
739 }
740 }
741 else {
742 /* First see if the MESA_CI_VISUAL env var is defined */
743 vis = get_env_visual( dpy, screen, "MESA_CI_VISUAL" );
744 if (vis) {
745 return vis;
746 }
747 /* Otherwise, search for a suitable visual, starting with shallowest */
748 if (preferred_class==DONT_CARE) {
749 for (xclass=0;xclass<4;xclass++) {
750 switch (xclass) {
751 case 0: visclass = PseudoColor; break;
752 case 1: visclass = StaticColor; break;
753 case 2: visclass = GrayScale; break;
754 case 3: visclass = StaticGray; break;
755 }
756 /* try 8-bit up through 16-bit */
757 for (depth=8;depth<=16;depth++) {
758 vis = get_visual( dpy, screen, depth, visclass );
759 if (vis) {
760 return vis;
761 }
762 }
763 /* try min_depth up to 8-bit */
764 for (depth=min_depth;depth<8;depth++) {
765 vis = get_visual( dpy, screen, depth, visclass );
766 if (vis) {
767 return vis;
768 }
769 }
770 }
771 }
772 else {
773 /* search for a specific visual class */
774 switch (preferred_class) {
775 case GLX_TRUE_COLOR_EXT: visclass = TrueColor; break;
776 case GLX_DIRECT_COLOR_EXT: visclass = DirectColor; break;
777 case GLX_PSEUDO_COLOR_EXT: visclass = PseudoColor; break;
778 case GLX_STATIC_COLOR_EXT: visclass = StaticColor; break;
779 case GLX_GRAY_SCALE_EXT: visclass = GrayScale; break;
780 case GLX_STATIC_GRAY_EXT: visclass = StaticGray; break;
781 default: return NULL;
782 }
783 /* try 8-bit up through 16-bit */
784 for (depth=8;depth<=16;depth++) {
785 vis = get_visual( dpy, screen, depth, visclass );
786 if (vis) {
787 return vis;
788 }
789 }
790 /* try min_depth up to 8-bit */
791 for (depth=min_depth;depth<8;depth++) {
792 vis = get_visual( dpy, screen, depth, visclass );
793 if (vis) {
794 return vis;
795 }
796 }
797 }
798 }
799
800 /* didn't find a visual */
801 return NULL;
802 }
803
804
805
806 /*
807 * Find the deepest X over/underlay visual of at least min_depth.
808 * Input: dpy, screen - X display and screen number
809 * level - the over/underlay level
810 * trans_type - transparent pixel type: GLX_NONE_EXT,
811 * GLX_TRANSPARENT_RGB_EXT, GLX_TRANSPARENT_INDEX_EXT,
812 * or DONT_CARE
813 * trans_value - transparent pixel value or DONT_CARE
814 * min_depth - minimum visual depth
815 * preferred_class - preferred GLX visual class or DONT_CARE
816 * Return: pointer to an XVisualInfo or NULL.
817 */
818 static XVisualInfo *
819 choose_x_overlay_visual( Display *dpy, int scr, GLboolean rgbFlag,
820 int level, int trans_type, int trans_value,
821 int min_depth, int preferred_class )
822 {
823 OverlayInfo *overlay_info;
824 int numOverlaysPerScreen;
825 int i;
826 XVisualInfo *deepvis;
827 int deepest;
828
829 /*DEBUG int tt, tv; */
830
831 switch (preferred_class) {
832 case GLX_TRUE_COLOR_EXT: preferred_class = TrueColor; break;
833 case GLX_DIRECT_COLOR_EXT: preferred_class = DirectColor; break;
834 case GLX_PSEUDO_COLOR_EXT: preferred_class = PseudoColor; break;
835 case GLX_STATIC_COLOR_EXT: preferred_class = StaticColor; break;
836 case GLX_GRAY_SCALE_EXT: preferred_class = GrayScale; break;
837 case GLX_STATIC_GRAY_EXT: preferred_class = StaticGray; break;
838 default: preferred_class = DONT_CARE;
839 }
840
841 overlay_info = GetOverlayInfo(dpy, scr, &numOverlaysPerScreen);
842 if (!overlay_info) {
843 return NULL;
844 }
845
846 /* Search for the deepest overlay which satisifies all criteria. */
847 deepest = min_depth;
848 deepvis = NULL;
849
850 for (i = 0; i < numOverlaysPerScreen; i++) {
851 const OverlayInfo *ov = overlay_info + i;
852 XVisualInfo *vislist, vistemplate;
853 int count;
854
855 if (ov->layer!=level) {
856 /* failed overlay level criteria */
857 continue;
858 }
859 if (!(trans_type==DONT_CARE
860 || (trans_type==GLX_TRANSPARENT_INDEX_EXT
861 && ov->transparent_type>0)
862 || (trans_type==GLX_NONE_EXT && ov->transparent_type==0))) {
863 /* failed transparent pixel type criteria */
864 continue;
865 }
866 if (trans_value!=DONT_CARE && trans_value!=ov->value) {
867 /* failed transparent pixel value criteria */
868 continue;
869 }
870
871 /* get XVisualInfo and check the depth */
872 vistemplate.visualid = ov->overlay_visual;
873 vistemplate.screen = scr;
874 vislist = XGetVisualInfo( dpy, VisualIDMask | VisualScreenMask,
875 &vistemplate, &count );
876
877 if (count!=1) {
878 /* something went wrong */
879 continue;
880 }
881 if (preferred_class!=DONT_CARE && preferred_class!=vislist->CLASS) {
882 /* wrong visual class */
883 continue;
884 }
885
886 /* if RGB was requested, make sure we have True/DirectColor */
887 if (rgbFlag && vislist->CLASS != TrueColor
888 && vislist->CLASS != DirectColor)
889 continue;
890
891 /* if CI was requested, make sure we have a color indexed visual */
892 if (!rgbFlag
893 && (vislist->CLASS == TrueColor || vislist->CLASS == DirectColor))
894 continue;
895
896 if (deepvis==NULL || vislist->depth > deepest) {
897 /* YES! found a satisfactory visual */
898 if (deepvis) {
899 XFree( deepvis );
900 }
901 deepest = vislist->depth;
902 deepvis = vislist;
903 /* DEBUG tt = ov->transparent_type;*/
904 /* DEBUG tv = ov->value; */
905 }
906 }
907
908 /*DEBUG
909 if (deepvis) {
910 printf("chose 0x%x: layer=%d depth=%d trans_type=%d trans_value=%d\n",
911 deepvis->visualid, level, deepvis->depth, tt, tv );
912 }
913 */
914 return deepvis;
915 }
916
917
918 /**********************************************************************/
919 /*** Display-related functions ***/
920 /**********************************************************************/
921
922
923 /**
924 * Free all XMesaVisuals which are associated with the given display.
925 */
926 static void
927 destroy_visuals_on_display(Display *dpy)
928 {
929 int i;
930 for (i = 0; i < NumVisuals; i++) {
931 if (VisualTable[i]->display == dpy) {
932 /* remove this visual */
933 int j;
934 free(VisualTable[i]);
935 for (j = i; j < NumVisuals - 1; j++)
936 VisualTable[j] = VisualTable[j + 1];
937 NumVisuals--;
938 }
939 }
940 }
941
942
943 /**
944 * Called from XCloseDisplay() to let us free our display-related data.
945 */
946 static int
947 close_display_callback(Display *dpy, XExtCodes *codes)
948 {
949 destroy_visuals_on_display(dpy);
950 xmesa_destroy_buffers_on_display(dpy);
951 return 0;
952 }
953
954
955 /**
956 * Look for the named extension on given display and return a pointer
957 * to the _XExtension data, or NULL if extension not found.
958 */
959 static _XExtension *
960 lookup_extension(Display *dpy, const char *extName)
961 {
962 _XExtension *ext;
963 for (ext = dpy->ext_procs; ext; ext = ext->next) {
964 if (ext->name && strcmp(ext->name, extName) == 0) {
965 return ext;
966 }
967 }
968 return NULL;
969 }
970
971
972 /**
973 * Whenever we're given a new Display pointer, call this function to
974 * register our close_display_callback function.
975 */
976 static void
977 register_with_display(Display *dpy)
978 {
979 const char *extName = "MesaGLX";
980 _XExtension *ext;
981
982 ext = lookup_extension(dpy, extName);
983 if (!ext) {
984 XExtCodes *c = XAddExtension(dpy);
985 ext = dpy->ext_procs; /* new extension is at head of list */
986 assert(c->extension == ext->codes.extension);
987 ext->name = _mesa_strdup(extName);
988 ext->close_display = close_display_callback;
989 }
990 }
991
992
993 /**********************************************************************/
994 /*** Begin Fake GLX API Functions ***/
995 /**********************************************************************/
996
997
998 /**
999 * Helper used by glXChooseVisual and glXChooseFBConfig.
1000 * The fbConfig parameter must be GL_FALSE for the former and GL_TRUE for
1001 * the later.
1002 * In either case, the attribute list is terminated with the value 'None'.
1003 */
1004 static XMesaVisual
1005 choose_visual( Display *dpy, int screen, const int *list, GLboolean fbConfig )
1006 {
1007 const GLboolean rgbModeDefault = fbConfig;
1008 const int *parselist;
1009 XVisualInfo *vis;
1010 int min_ci = 0;
1011 int min_red=0, min_green=0, min_blue=0;
1012 GLboolean rgb_flag = rgbModeDefault;
1013 GLboolean alpha_flag = GL_FALSE;
1014 GLboolean double_flag = GL_FALSE;
1015 GLboolean stereo_flag = GL_FALSE;
1016 GLint depth_size = 0;
1017 GLint stencil_size = 0;
1018 GLint accumRedSize = 0;
1019 GLint accumGreenSize = 0;
1020 GLint accumBlueSize = 0;
1021 GLint accumAlphaSize = 0;
1022 int level = 0;
1023 int visual_type = DONT_CARE;
1024 int trans_type = DONT_CARE;
1025 int trans_value = DONT_CARE;
1026 GLint caveat = DONT_CARE;
1027 XMesaVisual xmvis = NULL;
1028 int desiredVisualID = -1;
1029 int numAux = 0;
1030
1031 parselist = list;
1032
1033 while (*parselist) {
1034
1035 switch (*parselist) {
1036 case GLX_USE_GL:
1037 if (fbConfig) {
1038 /* invalid token */
1039 return NULL;
1040 }
1041 else {
1042 /* skip */
1043 parselist++;
1044 }
1045 break;
1046 case GLX_BUFFER_SIZE:
1047 parselist++;
1048 min_ci = *parselist++;
1049 break;
1050 case GLX_LEVEL:
1051 parselist++;
1052 level = *parselist++;
1053 break;
1054 case GLX_RGBA:
1055 if (fbConfig) {
1056 /* invalid token */
1057 return NULL;
1058 }
1059 else {
1060 rgb_flag = GL_TRUE;
1061 parselist++;
1062 }
1063 break;
1064 case GLX_DOUBLEBUFFER:
1065 parselist++;
1066 if (fbConfig) {
1067 double_flag = *parselist++;
1068 }
1069 else {
1070 double_flag = GL_TRUE;
1071 }
1072 break;
1073 case GLX_STEREO:
1074 parselist++;
1075 if (fbConfig) {
1076 stereo_flag = *parselist++;
1077 }
1078 else {
1079 stereo_flag = GL_TRUE;
1080 }
1081 return NULL; /* stereo not supported */
1082 case GLX_AUX_BUFFERS:
1083 parselist++;
1084 numAux = *parselist++;
1085 if (numAux > MAX_AUX_BUFFERS)
1086 return NULL;
1087 break;
1088 case GLX_RED_SIZE:
1089 parselist++;
1090 min_red = *parselist++;
1091 break;
1092 case GLX_GREEN_SIZE:
1093 parselist++;
1094 min_green = *parselist++;
1095 break;
1096 case GLX_BLUE_SIZE:
1097 parselist++;
1098 min_blue = *parselist++;
1099 break;
1100 case GLX_ALPHA_SIZE:
1101 parselist++;
1102 {
1103 GLint size = *parselist++;
1104 alpha_flag = size ? GL_TRUE : GL_FALSE;
1105 }
1106 break;
1107 case GLX_DEPTH_SIZE:
1108 parselist++;
1109 depth_size = *parselist++;
1110 break;
1111 case GLX_STENCIL_SIZE:
1112 parselist++;
1113 stencil_size = *parselist++;
1114 break;
1115 case GLX_ACCUM_RED_SIZE:
1116 parselist++;
1117 {
1118 GLint size = *parselist++;
1119 accumRedSize = MAX2( accumRedSize, size );
1120 }
1121 break;
1122 case GLX_ACCUM_GREEN_SIZE:
1123 parselist++;
1124 {
1125 GLint size = *parselist++;
1126 accumGreenSize = MAX2( accumGreenSize, size );
1127 }
1128 break;
1129 case GLX_ACCUM_BLUE_SIZE:
1130 parselist++;
1131 {
1132 GLint size = *parselist++;
1133 accumBlueSize = MAX2( accumBlueSize, size );
1134 }
1135 break;
1136 case GLX_ACCUM_ALPHA_SIZE:
1137 parselist++;
1138 {
1139 GLint size = *parselist++;
1140 accumAlphaSize = MAX2( accumAlphaSize, size );
1141 }
1142 break;
1143
1144 /*
1145 * GLX_EXT_visual_info extension
1146 */
1147 case GLX_X_VISUAL_TYPE_EXT:
1148 parselist++;
1149 visual_type = *parselist++;
1150 break;
1151 case GLX_TRANSPARENT_TYPE_EXT:
1152 parselist++;
1153 trans_type = *parselist++;
1154 break;
1155 case GLX_TRANSPARENT_INDEX_VALUE_EXT:
1156 parselist++;
1157 trans_value = *parselist++;
1158 break;
1159 case GLX_TRANSPARENT_RED_VALUE_EXT:
1160 case GLX_TRANSPARENT_GREEN_VALUE_EXT:
1161 case GLX_TRANSPARENT_BLUE_VALUE_EXT:
1162 case GLX_TRANSPARENT_ALPHA_VALUE_EXT:
1163 /* ignore */
1164 parselist++;
1165 parselist++;
1166 break;
1167
1168 /*
1169 * GLX_EXT_visual_info extension
1170 */
1171 case GLX_VISUAL_CAVEAT_EXT:
1172 parselist++;
1173 caveat = *parselist++; /* ignored for now */
1174 break;
1175
1176 /*
1177 * GLX_ARB_multisample
1178 */
1179 case GLX_SAMPLE_BUFFERS_ARB:
1180 /* ms not supported */
1181 return NULL;
1182 case GLX_SAMPLES_ARB:
1183 /* ms not supported */
1184 return NULL;
1185
1186 /*
1187 * FBConfig attribs.
1188 */
1189 case GLX_RENDER_TYPE:
1190 if (!fbConfig)
1191 return NULL;
1192 parselist++;
1193 if (*parselist == GLX_RGBA_BIT) {
1194 rgb_flag = GL_TRUE;
1195 }
1196 else if (*parselist == GLX_COLOR_INDEX_BIT) {
1197 rgb_flag = GL_FALSE;
1198 }
1199 else if (*parselist == 0) {
1200 rgb_flag = GL_TRUE;
1201 }
1202 parselist++;
1203 break;
1204 case GLX_DRAWABLE_TYPE:
1205 if (!fbConfig)
1206 return NULL;
1207 parselist++;
1208 if (*parselist & ~(GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT)) {
1209 return NULL; /* bad bit */
1210 }
1211 parselist++;
1212 break;
1213 case GLX_FBCONFIG_ID:
1214 if (!fbConfig)
1215 return NULL;
1216 parselist++;
1217 desiredVisualID = *parselist++;
1218 break;
1219 case GLX_X_RENDERABLE:
1220 if (!fbConfig)
1221 return NULL;
1222 parselist += 2;
1223 /* ignore */
1224 break;
1225
1226 case None:
1227 /* end of list */
1228 break;
1229
1230 default:
1231 /* undefined attribute */
1232 _mesa_warning(NULL, "unexpected attrib 0x%x in choose_visual()",
1233 *parselist);
1234 return NULL;
1235 }
1236 }
1237
1238 (void) caveat;
1239
1240 /*
1241 * Since we're only simulating the GLX extension this function will never
1242 * find any real GL visuals. Instead, all we can do is try to find an RGB
1243 * or CI visual of appropriate depth. Other requested attributes such as
1244 * double buffering, depth buffer, etc. will be associated with the X
1245 * visual and stored in the VisualTable[].
1246 */
1247 if (desiredVisualID != -1) {
1248 /* try to get a specific visual, by visualID */
1249 XVisualInfo temp;
1250 int n;
1251 temp.visualid = desiredVisualID;
1252 temp.screen = screen;
1253 vis = XGetVisualInfo(dpy, VisualIDMask | VisualScreenMask, &temp, &n);
1254 if (vis) {
1255 /* give the visual some useful GLX attributes */
1256 double_flag = GL_TRUE;
1257 if (vis->depth > 8)
1258 rgb_flag = GL_TRUE;
1259 depth_size = default_depth_bits();
1260 stencil_size = STENCIL_BITS;
1261 /* XXX accum??? */
1262 }
1263 }
1264 else if (level==0) {
1265 /* normal color planes */
1266 if (rgb_flag) {
1267 /* Get an RGB visual */
1268 int min_rgb = min_red + min_green + min_blue;
1269 if (min_rgb>1 && min_rgb<8) {
1270 /* a special case to be sure we can get a monochrome visual */
1271 min_rgb = 1;
1272 }
1273 vis = choose_x_visual( dpy, screen, rgb_flag, min_rgb, visual_type );
1274 }
1275 else {
1276 /* Get a color index visual */
1277 vis = choose_x_visual( dpy, screen, rgb_flag, min_ci, visual_type );
1278 accumRedSize = accumGreenSize = accumBlueSize = accumAlphaSize = 0;
1279 }
1280 }
1281 else {
1282 /* over/underlay planes */
1283 if (rgb_flag) {
1284 /* rgba overlay */
1285 int min_rgb = min_red + min_green + min_blue;
1286 if (min_rgb>1 && min_rgb<8) {
1287 /* a special case to be sure we can get a monochrome visual */
1288 min_rgb = 1;
1289 }
1290 vis = choose_x_overlay_visual( dpy, screen, rgb_flag, level,
1291 trans_type, trans_value, min_rgb, visual_type );
1292 }
1293 else {
1294 /* color index overlay */
1295 vis = choose_x_overlay_visual( dpy, screen, rgb_flag, level,
1296 trans_type, trans_value, min_ci, visual_type );
1297 }
1298 }
1299
1300 if (vis) {
1301 /* Note: we're not exactly obeying the glXChooseVisual rules here.
1302 * When GLX_DEPTH_SIZE = 1 is specified we're supposed to choose the
1303 * largest depth buffer size, which is 32bits/value. Instead, we
1304 * return 16 to maintain performance with earlier versions of Mesa.
1305 */
1306 if (depth_size > 24)
1307 depth_size = 32;
1308 else if (depth_size > 16)
1309 depth_size = 24;
1310 else if (depth_size > 0) {
1311 depth_size = default_depth_bits();
1312 }
1313
1314 if (!alpha_flag) {
1315 alpha_flag = default_alpha_bits() > 0;
1316 }
1317
1318 /* we only support one size of stencil and accum buffers. */
1319 if (stencil_size > 0)
1320 stencil_size = STENCIL_BITS;
1321 if (accumRedSize > 0 || accumGreenSize > 0 || accumBlueSize > 0 ||
1322 accumAlphaSize > 0) {
1323 accumRedSize =
1324 accumGreenSize =
1325 accumBlueSize = default_accum_bits();
1326 accumAlphaSize = alpha_flag ? accumRedSize : 0;
1327 }
1328
1329 xmvis = save_glx_visual( dpy, vis, rgb_flag, alpha_flag, double_flag,
1330 stereo_flag, depth_size, stencil_size,
1331 accumRedSize, accumGreenSize,
1332 accumBlueSize, accumAlphaSize, level, numAux );
1333 }
1334
1335 return xmvis;
1336 }
1337
1338
1339 static XVisualInfo *
1340 Fake_glXChooseVisual( Display *dpy, int screen, int *list )
1341 {
1342 XMesaVisual xmvis;
1343
1344 /* register ourselves as an extension on this display */
1345 register_with_display(dpy);
1346
1347 xmvis = choose_visual(dpy, screen, list, GL_FALSE);
1348 if (xmvis) {
1349 #if 0
1350 return xmvis->vishandle;
1351 #else
1352 /* create a new vishandle - the cached one may be stale */
1353 xmvis->vishandle = (XVisualInfo *) _mesa_malloc(sizeof(XVisualInfo));
1354 if (xmvis->vishandle) {
1355 _mesa_memcpy(xmvis->vishandle, xmvis->visinfo, sizeof(XVisualInfo));
1356 }
1357 return xmvis->vishandle;
1358 #endif
1359 }
1360 else
1361 return NULL;
1362 }
1363
1364
1365 static GLXContext
1366 Fake_glXCreateContext( Display *dpy, XVisualInfo *visinfo,
1367 GLXContext share_list, Bool direct )
1368 {
1369 XMesaVisual xmvis;
1370 struct fake_glx_context *glxCtx;
1371 struct fake_glx_context *shareCtx = (struct fake_glx_context *) share_list;
1372
1373 if (!dpy || !visinfo)
1374 return 0;
1375
1376 glxCtx = CALLOC_STRUCT(fake_glx_context);
1377 if (!glxCtx)
1378 return 0;
1379
1380 /* deallocate unused windows/buffers */
1381 #if 0
1382 XMesaGarbageCollect();
1383 #endif
1384
1385 xmvis = find_glx_visual( dpy, visinfo );
1386 if (!xmvis) {
1387 /* This visual wasn't found with glXChooseVisual() */
1388 xmvis = create_glx_visual( dpy, visinfo );
1389 if (!xmvis) {
1390 /* unusable visual */
1391 _mesa_free(glxCtx);
1392 return NULL;
1393 }
1394 }
1395
1396 glxCtx->xmesaContext = XMesaCreateContext(xmvis,
1397 shareCtx ? shareCtx->xmesaContext : NULL);
1398 if (!glxCtx->xmesaContext) {
1399 _mesa_free(glxCtx);
1400 return NULL;
1401 }
1402
1403 glxCtx->xmesaContext->direct = GL_FALSE;
1404 glxCtx->glxContext.isDirect = GL_FALSE;
1405 glxCtx->glxContext.currentDpy = dpy;
1406 glxCtx->glxContext.xid = (XID) glxCtx; /* self pointer */
1407
1408 assert((void *) glxCtx == (void *) &(glxCtx->glxContext));
1409
1410 return (GLXContext) glxCtx;
1411 }
1412
1413
1414 /* XXX these may have to be removed due to thread-safety issues. */
1415 static GLXContext MakeCurrent_PrevContext = 0;
1416 static GLXDrawable MakeCurrent_PrevDrawable = 0;
1417 static GLXDrawable MakeCurrent_PrevReadable = 0;
1418 static XMesaBuffer MakeCurrent_PrevDrawBuffer = 0;
1419 static XMesaBuffer MakeCurrent_PrevReadBuffer = 0;
1420
1421
1422 /* GLX 1.3 and later */
1423 static Bool
1424 Fake_glXMakeContextCurrent( Display *dpy, GLXDrawable draw,
1425 GLXDrawable read, GLXContext ctx )
1426 {
1427 struct fake_glx_context *glxCtx = (struct fake_glx_context *) ctx;
1428
1429 if (ctx && draw && read) {
1430 XMesaBuffer drawBuffer, readBuffer;
1431 XMesaContext xmctx = glxCtx->xmesaContext;
1432
1433 /* Find the XMesaBuffer which corresponds to the GLXDrawable 'draw' */
1434 if (ctx == MakeCurrent_PrevContext
1435 && draw == MakeCurrent_PrevDrawable) {
1436 drawBuffer = MakeCurrent_PrevDrawBuffer;
1437 }
1438 else {
1439 drawBuffer = XMesaFindBuffer( dpy, draw );
1440 }
1441 if (!drawBuffer) {
1442 /* drawable must be a new window! */
1443 drawBuffer = XMesaCreateWindowBuffer2( xmctx->xm_visual, draw, xmctx);
1444 if (!drawBuffer) {
1445 /* Out of memory, or context/drawable depth mismatch */
1446 return False;
1447 }
1448 }
1449
1450 /* Find the XMesaBuffer which corresponds to the GLXDrawable 'read' */
1451 if (ctx == MakeCurrent_PrevContext
1452 && read == MakeCurrent_PrevReadable) {
1453 readBuffer = MakeCurrent_PrevReadBuffer;
1454 }
1455 else {
1456 readBuffer = XMesaFindBuffer( dpy, read );
1457 }
1458 if (!readBuffer) {
1459 /* drawable must be a new window! */
1460 readBuffer = XMesaCreateWindowBuffer2(glxCtx->xmesaContext->xm_visual,
1461 read, xmctx);
1462 if (!readBuffer) {
1463 /* Out of memory, or context/drawable depth mismatch */
1464 return False;
1465 }
1466 }
1467
1468 MakeCurrent_PrevContext = ctx;
1469 MakeCurrent_PrevDrawable = draw;
1470 MakeCurrent_PrevReadable = read;
1471 MakeCurrent_PrevDrawBuffer = drawBuffer;
1472 MakeCurrent_PrevReadBuffer = readBuffer;
1473
1474 /* Now make current! */
1475 if (XMesaMakeCurrent2(xmctx, drawBuffer, readBuffer)) {
1476 ((__GLXcontext *) ctx)->currentDpy = dpy;
1477 ((__GLXcontext *) ctx)->currentDrawable = draw;
1478 ((__GLXcontext *) ctx)->currentReadable = read;
1479 return True;
1480 }
1481 else {
1482 return False;
1483 }
1484 }
1485 else if (!ctx && !draw && !read) {
1486 /* release current context w/out assigning new one. */
1487 XMesaMakeCurrent( NULL, NULL );
1488 MakeCurrent_PrevContext = 0;
1489 MakeCurrent_PrevDrawable = 0;
1490 MakeCurrent_PrevReadable = 0;
1491 MakeCurrent_PrevDrawBuffer = 0;
1492 MakeCurrent_PrevReadBuffer = 0;
1493 return True;
1494 }
1495 else {
1496 /* The args must either all be non-zero or all zero.
1497 * This is an error.
1498 */
1499 return False;
1500 }
1501 }
1502
1503
1504 static Bool
1505 Fake_glXMakeCurrent( Display *dpy, GLXDrawable drawable, GLXContext ctx )
1506 {
1507 return Fake_glXMakeContextCurrent( dpy, drawable, drawable, ctx );
1508 }
1509
1510
1511 static GLXPixmap
1512 Fake_glXCreateGLXPixmap( Display *dpy, XVisualInfo *visinfo, Pixmap pixmap )
1513 {
1514 XMesaVisual v;
1515 XMesaBuffer b;
1516
1517 v = find_glx_visual( dpy, visinfo );
1518 if (!v) {
1519 v = create_glx_visual( dpy, visinfo );
1520 if (!v) {
1521 /* unusable visual */
1522 return 0;
1523 }
1524 }
1525
1526 b = XMesaCreatePixmapBuffer( v, pixmap, 0 );
1527 if (!b) {
1528 return 0;
1529 }
1530 return b->frontxrb->pixmap;
1531 }
1532
1533
1534 /*** GLX_MESA_pixmap_colormap ***/
1535
1536 static GLXPixmap
1537 Fake_glXCreateGLXPixmapMESA( Display *dpy, XVisualInfo *visinfo,
1538 Pixmap pixmap, Colormap cmap )
1539 {
1540 XMesaVisual v;
1541 XMesaBuffer b;
1542
1543 v = find_glx_visual( dpy, visinfo );
1544 if (!v) {
1545 v = create_glx_visual( dpy, visinfo );
1546 if (!v) {
1547 /* unusable visual */
1548 return 0;
1549 }
1550 }
1551
1552 b = XMesaCreatePixmapBuffer( v, pixmap, cmap );
1553 if (!b) {
1554 return 0;
1555 }
1556 return b->frontxrb->pixmap;
1557 }
1558
1559
1560 static void
1561 Fake_glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap )
1562 {
1563 XMesaBuffer b = XMesaFindBuffer(dpy, pixmap);
1564 if (b) {
1565 XMesaDestroyBuffer(b);
1566 }
1567 else if (_mesa_getenv("MESA_DEBUG")) {
1568 _mesa_warning(NULL, "Mesa: glXDestroyGLXPixmap: invalid pixmap\n");
1569 }
1570 }
1571
1572
1573 static void
1574 Fake_glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
1575 unsigned long mask )
1576 {
1577 struct fake_glx_context *fakeSrc = (struct fake_glx_context *) src;
1578 struct fake_glx_context *fakeDst = (struct fake_glx_context *) dst;
1579 XMesaContext xm_src = fakeSrc->xmesaContext;
1580 XMesaContext xm_dst = fakeDst->xmesaContext;
1581 (void) dpy;
1582 if (MakeCurrent_PrevContext == src) {
1583 _mesa_Flush();
1584 }
1585 _mesa_copy_context( &(xm_src->mesa), &(xm_dst->mesa), (GLuint) mask );
1586 }
1587
1588
1589 static Bool
1590 Fake_glXQueryExtension( Display *dpy, int *errorb, int *event )
1591 {
1592 /* Mesa's GLX isn't really an X extension but we try to act like one. */
1593 (void) dpy;
1594 (void) errorb;
1595 (void) event;
1596 return True;
1597 }
1598
1599
1600 extern void _kw_ungrab_all( Display *dpy );
1601 void _kw_ungrab_all( Display *dpy )
1602 {
1603 XUngrabPointer( dpy, CurrentTime );
1604 XUngrabKeyboard( dpy, CurrentTime );
1605 }
1606
1607
1608 static void
1609 Fake_glXDestroyContext( Display *dpy, GLXContext ctx )
1610 {
1611 struct fake_glx_context *glxCtx = (struct fake_glx_context *) ctx;
1612 (void) dpy;
1613 MakeCurrent_PrevContext = 0;
1614 MakeCurrent_PrevDrawable = 0;
1615 MakeCurrent_PrevReadable = 0;
1616 MakeCurrent_PrevDrawBuffer = 0;
1617 MakeCurrent_PrevReadBuffer = 0;
1618 XMesaDestroyContext( glxCtx->xmesaContext );
1619 XMesaGarbageCollect();
1620 _mesa_free(glxCtx);
1621 }
1622
1623
1624 static Bool
1625 Fake_glXIsDirect( Display *dpy, GLXContext ctx )
1626 {
1627 struct fake_glx_context *glxCtx = (struct fake_glx_context *) ctx;
1628 (void) dpy;
1629 return glxCtx->xmesaContext->direct;
1630 }
1631
1632
1633
1634 static void
1635 Fake_glXSwapBuffers( Display *dpy, GLXDrawable drawable )
1636 {
1637 XMesaBuffer buffer = XMesaFindBuffer( dpy, drawable );
1638
1639 if (buffer) {
1640 XMesaSwapBuffers(buffer);
1641 }
1642 else if (_mesa_getenv("MESA_DEBUG")) {
1643 _mesa_warning(NULL, "glXSwapBuffers: invalid drawable 0x%x\n",
1644 (int) drawable);
1645 }
1646 }
1647
1648
1649
1650 /*** GLX_MESA_copy_sub_buffer ***/
1651
1652 static void
1653 Fake_glXCopySubBufferMESA( Display *dpy, GLXDrawable drawable,
1654 int x, int y, int width, int height )
1655 {
1656 XMesaBuffer buffer = XMesaFindBuffer( dpy, drawable );
1657 if (buffer) {
1658 XMesaCopySubBuffer(buffer, x, y, width, height);
1659 }
1660 else if (_mesa_getenv("MESA_DEBUG")) {
1661 _mesa_warning(NULL, "Mesa: glXCopySubBufferMESA: invalid drawable\n");
1662 }
1663 }
1664
1665
1666 static Bool
1667 Fake_glXQueryVersion( Display *dpy, int *maj, int *min )
1668 {
1669 (void) dpy;
1670 /* Return GLX version, not Mesa version */
1671 assert(CLIENT_MAJOR_VERSION == SERVER_MAJOR_VERSION);
1672 *maj = CLIENT_MAJOR_VERSION;
1673 *min = MIN2( CLIENT_MINOR_VERSION, SERVER_MINOR_VERSION );
1674 return True;
1675 }
1676
1677
1678 /*
1679 * Query the GLX attributes of the given XVisualInfo.
1680 */
1681 static int
1682 get_config( XMesaVisual xmvis, int attrib, int *value, GLboolean fbconfig )
1683 {
1684 ASSERT(xmvis);
1685 switch(attrib) {
1686 case GLX_USE_GL:
1687 if (fbconfig)
1688 return GLX_BAD_ATTRIBUTE;
1689 *value = (int) True;
1690 return 0;
1691 case GLX_BUFFER_SIZE:
1692 *value = xmvis->visinfo->depth;
1693 return 0;
1694 case GLX_LEVEL:
1695 *value = xmvis->mesa_visual.level;
1696 return 0;
1697 case GLX_RGBA:
1698 if (fbconfig)
1699 return GLX_BAD_ATTRIBUTE;
1700 if (xmvis->mesa_visual.rgbMode) {
1701 *value = True;
1702 }
1703 else {
1704 *value = False;
1705 }
1706 return 0;
1707 case GLX_DOUBLEBUFFER:
1708 *value = (int) xmvis->mesa_visual.doubleBufferMode;
1709 return 0;
1710 case GLX_STEREO:
1711 *value = (int) xmvis->mesa_visual.stereoMode;
1712 return 0;
1713 case GLX_AUX_BUFFERS:
1714 *value = xmvis->mesa_visual.numAuxBuffers;
1715 return 0;
1716 case GLX_RED_SIZE:
1717 *value = xmvis->mesa_visual.redBits;
1718 return 0;
1719 case GLX_GREEN_SIZE:
1720 *value = xmvis->mesa_visual.greenBits;
1721 return 0;
1722 case GLX_BLUE_SIZE:
1723 *value = xmvis->mesa_visual.blueBits;
1724 return 0;
1725 case GLX_ALPHA_SIZE:
1726 *value = xmvis->mesa_visual.alphaBits;
1727 return 0;
1728 case GLX_DEPTH_SIZE:
1729 *value = xmvis->mesa_visual.depthBits;
1730 return 0;
1731 case GLX_STENCIL_SIZE:
1732 *value = xmvis->mesa_visual.stencilBits;
1733 return 0;
1734 case GLX_ACCUM_RED_SIZE:
1735 *value = xmvis->mesa_visual.accumRedBits;
1736 return 0;
1737 case GLX_ACCUM_GREEN_SIZE:
1738 *value = xmvis->mesa_visual.accumGreenBits;
1739 return 0;
1740 case GLX_ACCUM_BLUE_SIZE:
1741 *value = xmvis->mesa_visual.accumBlueBits;
1742 return 0;
1743 case GLX_ACCUM_ALPHA_SIZE:
1744 *value = xmvis->mesa_visual.accumAlphaBits;
1745 return 0;
1746
1747 /*
1748 * GLX_EXT_visual_info extension
1749 */
1750 case GLX_X_VISUAL_TYPE_EXT:
1751 switch (xmvis->visinfo->CLASS) {
1752 case StaticGray: *value = GLX_STATIC_GRAY_EXT; return 0;
1753 case GrayScale: *value = GLX_GRAY_SCALE_EXT; return 0;
1754 case StaticColor: *value = GLX_STATIC_GRAY_EXT; return 0;
1755 case PseudoColor: *value = GLX_PSEUDO_COLOR_EXT; return 0;
1756 case TrueColor: *value = GLX_TRUE_COLOR_EXT; return 0;
1757 case DirectColor: *value = GLX_DIRECT_COLOR_EXT; return 0;
1758 }
1759 return 0;
1760 case GLX_TRANSPARENT_TYPE_EXT:
1761 if (xmvis->mesa_visual.level==0) {
1762 /* normal planes */
1763 *value = GLX_NONE_EXT;
1764 }
1765 else if (xmvis->mesa_visual.level>0) {
1766 /* overlay */
1767 if (xmvis->mesa_visual.rgbMode) {
1768 *value = GLX_TRANSPARENT_RGB_EXT;
1769 }
1770 else {
1771 *value = GLX_TRANSPARENT_INDEX_EXT;
1772 }
1773 }
1774 else if (xmvis->mesa_visual.level<0) {
1775 /* underlay */
1776 *value = GLX_NONE_EXT;
1777 }
1778 return 0;
1779 case GLX_TRANSPARENT_INDEX_VALUE_EXT:
1780 {
1781 int pixel = transparent_pixel( xmvis );
1782 if (pixel>=0) {
1783 *value = pixel;
1784 }
1785 /* else undefined */
1786 }
1787 return 0;
1788 case GLX_TRANSPARENT_RED_VALUE_EXT:
1789 /* undefined */
1790 return 0;
1791 case GLX_TRANSPARENT_GREEN_VALUE_EXT:
1792 /* undefined */
1793 return 0;
1794 case GLX_TRANSPARENT_BLUE_VALUE_EXT:
1795 /* undefined */
1796 return 0;
1797 case GLX_TRANSPARENT_ALPHA_VALUE_EXT:
1798 /* undefined */
1799 return 0;
1800
1801 /*
1802 * GLX_EXT_visual_info extension
1803 */
1804 case GLX_VISUAL_CAVEAT_EXT:
1805 /* test for zero, just in case */
1806 if (xmvis->mesa_visual.visualRating > 0)
1807 *value = xmvis->mesa_visual.visualRating;
1808 else
1809 *value = GLX_NONE_EXT;
1810 return 0;
1811
1812 /*
1813 * GLX_ARB_multisample
1814 */
1815 case GLX_SAMPLE_BUFFERS_ARB:
1816 *value = 0;
1817 return 0;
1818 case GLX_SAMPLES_ARB:
1819 *value = 0;
1820 return 0;
1821
1822 /*
1823 * For FBConfigs:
1824 */
1825 case GLX_SCREEN_EXT:
1826 if (!fbconfig)
1827 return GLX_BAD_ATTRIBUTE;
1828 *value = xmvis->visinfo->screen;
1829 break;
1830 case GLX_DRAWABLE_TYPE: /*SGIX too */
1831 if (!fbconfig)
1832 return GLX_BAD_ATTRIBUTE;
1833 *value = GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
1834 break;
1835 case GLX_RENDER_TYPE_SGIX:
1836 if (!fbconfig)
1837 return GLX_BAD_ATTRIBUTE;
1838 if (xmvis->mesa_visual.rgbMode)
1839 *value = GLX_RGBA_BIT;
1840 else
1841 *value = GLX_COLOR_INDEX_BIT;
1842 break;
1843 case GLX_X_RENDERABLE_SGIX:
1844 if (!fbconfig)
1845 return GLX_BAD_ATTRIBUTE;
1846 *value = True; /* XXX really? */
1847 break;
1848 case GLX_FBCONFIG_ID_SGIX:
1849 if (!fbconfig)
1850 return GLX_BAD_ATTRIBUTE;
1851 *value = xmvis->visinfo->visualid;
1852 break;
1853 case GLX_MAX_PBUFFER_WIDTH:
1854 if (!fbconfig)
1855 return GLX_BAD_ATTRIBUTE;
1856 /* XXX or MAX_WIDTH? */
1857 *value = DisplayWidth(xmvis->display, xmvis->visinfo->screen);
1858 break;
1859 case GLX_MAX_PBUFFER_HEIGHT:
1860 if (!fbconfig)
1861 return GLX_BAD_ATTRIBUTE;
1862 *value = DisplayHeight(xmvis->display, xmvis->visinfo->screen);
1863 break;
1864 case GLX_MAX_PBUFFER_PIXELS:
1865 if (!fbconfig)
1866 return GLX_BAD_ATTRIBUTE;
1867 *value = DisplayWidth(xmvis->display, xmvis->visinfo->screen) *
1868 DisplayHeight(xmvis->display, xmvis->visinfo->screen);
1869 break;
1870 case GLX_VISUAL_ID:
1871 if (!fbconfig)
1872 return GLX_BAD_ATTRIBUTE;
1873 *value = xmvis->visinfo->visualid;
1874 break;
1875
1876 default:
1877 return GLX_BAD_ATTRIBUTE;
1878 }
1879 return Success;
1880 }
1881
1882
1883 static int
1884 Fake_glXGetConfig( Display *dpy, XVisualInfo *visinfo,
1885 int attrib, int *value )
1886 {
1887 XMesaVisual xmvis;
1888 int k;
1889 if (!dpy || !visinfo)
1890 return GLX_BAD_ATTRIBUTE;
1891
1892 xmvis = find_glx_visual( dpy, visinfo );
1893 if (!xmvis) {
1894 /* this visual wasn't obtained with glXChooseVisual */
1895 xmvis = create_glx_visual( dpy, visinfo );
1896 if (!xmvis) {
1897 /* this visual can't be used for GL rendering */
1898 if (attrib==GLX_USE_GL) {
1899 *value = (int) False;
1900 return 0;
1901 }
1902 else {
1903 return GLX_BAD_VISUAL;
1904 }
1905 }
1906 }
1907
1908 k = get_config(xmvis, attrib, value, GL_FALSE);
1909 return k;
1910 }
1911
1912
1913 static void
1914 Fake_glXWaitGL( void )
1915 {
1916 XMesaContext xmesa = XMesaGetCurrentContext();
1917 XMesaFlush( xmesa );
1918 }
1919
1920
1921
1922 static void
1923 Fake_glXWaitX( void )
1924 {
1925 XMesaContext xmesa = XMesaGetCurrentContext();
1926 XMesaFlush( xmesa );
1927 }
1928
1929
1930 static const char *
1931 get_extensions( void )
1932 {
1933 #ifdef FX
1934 const char *fx = _mesa_getenv("MESA_GLX_FX");
1935 if (fx && fx[0] != 'd') {
1936 return EXTENSIONS;
1937 }
1938 #endif
1939 return EXTENSIONS + 23; /* skip "GLX_MESA_set_3dfx_mode" */
1940 }
1941
1942
1943
1944 /* GLX 1.1 and later */
1945 static const char *
1946 Fake_glXQueryExtensionsString( Display *dpy, int screen )
1947 {
1948 (void) dpy;
1949 (void) screen;
1950 return get_extensions();
1951 }
1952
1953
1954
1955 /* GLX 1.1 and later */
1956 static const char *
1957 Fake_glXQueryServerString( Display *dpy, int screen, int name )
1958 {
1959 static char version[1000];
1960 _mesa_sprintf(version, "%d.%d %s",
1961 SERVER_MAJOR_VERSION, SERVER_MINOR_VERSION, MESA_GLX_VERSION);
1962
1963 (void) dpy;
1964 (void) screen;
1965
1966 switch (name) {
1967 case GLX_EXTENSIONS:
1968 return get_extensions();
1969 case GLX_VENDOR:
1970 return VENDOR;
1971 case GLX_VERSION:
1972 return version;
1973 default:
1974 return NULL;
1975 }
1976 }
1977
1978
1979
1980 /* GLX 1.1 and later */
1981 static const char *
1982 Fake_glXGetClientString( Display *dpy, int name )
1983 {
1984 static char version[1000];
1985 _mesa_sprintf(version, "%d.%d %s", CLIENT_MAJOR_VERSION,
1986 CLIENT_MINOR_VERSION, MESA_GLX_VERSION);
1987
1988 (void) dpy;
1989
1990 switch (name) {
1991 case GLX_EXTENSIONS:
1992 return get_extensions();
1993 case GLX_VENDOR:
1994 return VENDOR;
1995 case GLX_VERSION:
1996 return version;
1997 default:
1998 return NULL;
1999 }
2000 }
2001
2002
2003
2004 /*
2005 * GLX 1.3 and later
2006 */
2007
2008
2009 static int
2010 Fake_glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config,
2011 int attribute, int *value )
2012 {
2013 XMesaVisual v = (XMesaVisual) config;
2014 (void) dpy;
2015 (void) config;
2016
2017 if (!dpy || !config || !value)
2018 return -1;
2019
2020 return get_config(v, attribute, value, GL_TRUE);
2021 }
2022
2023
2024 static GLXFBConfig *
2025 Fake_glXGetFBConfigs( Display *dpy, int screen, int *nelements )
2026 {
2027 XVisualInfo *visuals, visTemplate;
2028 const long visMask = VisualScreenMask;
2029 int i;
2030
2031 /* Get list of all X visuals */
2032 visTemplate.screen = screen;
2033 visuals = XGetVisualInfo(dpy, visMask, &visTemplate, nelements);
2034 if (*nelements > 0) {
2035 XMesaVisual *results;
2036 results = (XMesaVisual *) _mesa_malloc(*nelements * sizeof(XMesaVisual));
2037 if (!results) {
2038 *nelements = 0;
2039 return NULL;
2040 }
2041 for (i = 0; i < *nelements; i++) {
2042 results[i] = create_glx_visual(dpy, visuals + i);
2043 }
2044 return (GLXFBConfig *) results;
2045 }
2046 return NULL;
2047 }
2048
2049
2050 static GLXFBConfig *
2051 Fake_glXChooseFBConfig( Display *dpy, int screen,
2052 const int *attribList, int *nitems )
2053 {
2054 XMesaVisual xmvis;
2055
2056 if (!attribList || !attribList[0]) {
2057 /* return list of all configs (per GLX_SGIX_fbconfig spec) */
2058 return Fake_glXGetFBConfigs(dpy, screen, nitems);
2059 }
2060
2061 xmvis = choose_visual(dpy, screen, attribList, GL_TRUE);
2062 if (xmvis) {
2063 GLXFBConfig *config = (GLXFBConfig *) _mesa_malloc(sizeof(XMesaVisual));
2064 if (!config) {
2065 *nitems = 0;
2066 return NULL;
2067 }
2068 *nitems = 1;
2069 config[0] = (GLXFBConfig) xmvis;
2070 return (GLXFBConfig *) config;
2071 }
2072 else {
2073 *nitems = 0;
2074 return NULL;
2075 }
2076 }
2077
2078
2079 static XVisualInfo *
2080 Fake_glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config )
2081 {
2082 if (dpy && config) {
2083 XMesaVisual xmvis = (XMesaVisual) config;
2084 #if 0
2085 return xmvis->vishandle;
2086 #else
2087 /* create a new vishandle - the cached one may be stale */
2088 xmvis->vishandle = (XVisualInfo *) _mesa_malloc(sizeof(XVisualInfo));
2089 if (xmvis->vishandle) {
2090 _mesa_memcpy(xmvis->vishandle, xmvis->visinfo, sizeof(XVisualInfo));
2091 }
2092 return xmvis->vishandle;
2093 #endif
2094 }
2095 else {
2096 return NULL;
2097 }
2098 }
2099
2100
2101 static GLXWindow
2102 Fake_glXCreateWindow( Display *dpy, GLXFBConfig config, Window win,
2103 const int *attribList )
2104 {
2105 XMesaVisual xmvis = (XMesaVisual) config;
2106 XMesaBuffer xmbuf;
2107 if (!xmvis)
2108 return 0;
2109
2110 xmbuf = XMesaCreateWindowBuffer2(xmvis, win, NULL);
2111 if (!xmbuf)
2112 return 0;
2113
2114 (void) dpy;
2115 (void) attribList; /* Ignored in GLX 1.3 */
2116
2117 return win; /* A hack for now */
2118 }
2119
2120
2121 static void
2122 Fake_glXDestroyWindow( Display *dpy, GLXWindow window )
2123 {
2124 XMesaBuffer b = XMesaFindBuffer(dpy, (XMesaDrawable) window);
2125 if (b)
2126 XMesaDestroyBuffer(b);
2127 /* don't destroy X window */
2128 }
2129
2130
2131 /* XXX untested */
2132 static GLXPixmap
2133 Fake_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap,
2134 const int *attribList )
2135 {
2136 XMesaVisual v = (XMesaVisual) config;
2137 XMesaBuffer b;
2138
2139 (void) dpy;
2140 (void) config;
2141 (void) pixmap;
2142 (void) attribList; /* Ignored in GLX 1.3 */
2143
2144 if (!dpy || !config || !pixmap)
2145 return 0;
2146
2147 b = XMesaCreatePixmapBuffer( v, pixmap, 0 );
2148 if (!b) {
2149 return 0;
2150 }
2151
2152 return pixmap;
2153 }
2154
2155
2156 static void
2157 Fake_glXDestroyPixmap( Display *dpy, GLXPixmap pixmap )
2158 {
2159 XMesaBuffer b = XMesaFindBuffer(dpy, (XMesaDrawable)pixmap);
2160 if (b)
2161 XMesaDestroyBuffer(b);
2162 /* don't destroy X pixmap */
2163 }
2164
2165
2166 static GLXPbuffer
2167 Fake_glXCreatePbuffer( Display *dpy, GLXFBConfig config,
2168 const int *attribList )
2169 {
2170 XMesaVisual xmvis = (XMesaVisual) config;
2171 XMesaBuffer xmbuf;
2172 const int *attrib;
2173 int width = 0, height = 0;
2174 GLboolean useLargest = GL_FALSE, preserveContents = GL_FALSE;
2175
2176 (void) dpy;
2177
2178 for (attrib = attribList; *attrib; attrib++) {
2179 switch (*attrib) {
2180 case GLX_PBUFFER_WIDTH:
2181 attrib++;
2182 width = *attrib;
2183 break;
2184 case GLX_PBUFFER_HEIGHT:
2185 attrib++;
2186 height = *attrib;
2187 break;
2188 case GLX_PRESERVED_CONTENTS:
2189 attrib++;
2190 preserveContents = *attrib; /* ignored */
2191 break;
2192 case GLX_LARGEST_PBUFFER:
2193 attrib++;
2194 useLargest = *attrib; /* ignored */
2195 break;
2196 default:
2197 return 0;
2198 }
2199 }
2200
2201 /* not used at this time */
2202 (void) useLargest;
2203 (void) preserveContents;
2204
2205 if (width == 0 || height == 0)
2206 return 0;
2207
2208 xmbuf = XMesaCreatePBuffer( xmvis, 0, width, height);
2209 /* A GLXPbuffer handle must be an X Drawable because that's what
2210 * glXMakeCurrent takes.
2211 */
2212 if (xmbuf)
2213 return (GLXPbuffer) xmbuf->frontxrb->pixmap;
2214 else
2215 return 0;
2216 }
2217
2218
2219 static void
2220 Fake_glXDestroyPbuffer( Display *dpy, GLXPbuffer pbuf )
2221 {
2222 XMesaBuffer b = XMesaFindBuffer(dpy, pbuf);
2223 if (b) {
2224 XMesaDestroyBuffer(b);
2225 }
2226 }
2227
2228
2229 static void
2230 Fake_glXQueryDrawable( Display *dpy, GLXDrawable draw, int attribute,
2231 unsigned int *value )
2232 {
2233 XMesaBuffer xmbuf = XMesaFindBuffer(dpy, draw);
2234 if (!xmbuf)
2235 return;
2236
2237 switch (attribute) {
2238 case GLX_WIDTH:
2239 *value = xmbuf->mesa_buffer.Width;
2240 break;
2241 case GLX_HEIGHT:
2242 *value = xmbuf->mesa_buffer.Height;
2243 break;
2244 case GLX_PRESERVED_CONTENTS:
2245 *value = True;
2246 break;
2247 case GLX_LARGEST_PBUFFER:
2248 *value = xmbuf->mesa_buffer.Width * xmbuf->mesa_buffer.Height;
2249 break;
2250 case GLX_FBCONFIG_ID:
2251 *value = xmbuf->xm_visual->visinfo->visualid;
2252 return;
2253 default:
2254 return; /* GLX_BAD_ATTRIBUTE? */
2255 }
2256 }
2257
2258
2259 static GLXContext
2260 Fake_glXCreateNewContext( Display *dpy, GLXFBConfig config,
2261 int renderType, GLXContext shareList, Bool direct )
2262 {
2263 struct fake_glx_context *glxCtx;
2264 struct fake_glx_context *shareCtx = (struct fake_glx_context *) shareList;
2265 XMesaVisual xmvis = (XMesaVisual) config;
2266
2267 if (!dpy || !config ||
2268 (renderType != GLX_RGBA_TYPE && renderType != GLX_COLOR_INDEX_TYPE))
2269 return 0;
2270
2271 glxCtx = CALLOC_STRUCT(fake_glx_context);
2272 if (!glxCtx)
2273 return 0;
2274
2275 /* deallocate unused windows/buffers */
2276 XMesaGarbageCollect();
2277
2278 glxCtx->xmesaContext = XMesaCreateContext(xmvis,
2279 shareCtx ? shareCtx->xmesaContext : NULL);
2280 if (!glxCtx->xmesaContext) {
2281 _mesa_free(glxCtx);
2282 return NULL;
2283 }
2284
2285 glxCtx->xmesaContext->direct = GL_FALSE;
2286 glxCtx->glxContext.isDirect = GL_FALSE;
2287 glxCtx->glxContext.currentDpy = dpy;
2288 glxCtx->glxContext.xid = (XID) glxCtx; /* self pointer */
2289
2290 assert((void *) glxCtx == (void *) &(glxCtx->glxContext));
2291
2292 return (GLXContext) glxCtx;
2293 }
2294
2295
2296 static int
2297 Fake_glXQueryContext( Display *dpy, GLXContext ctx, int attribute, int *value )
2298 {
2299 struct fake_glx_context *glxCtx = (struct fake_glx_context *) ctx;
2300 XMesaContext xmctx = glxCtx->xmesaContext;
2301
2302 (void) dpy;
2303 (void) ctx;
2304
2305 switch (attribute) {
2306 case GLX_FBCONFIG_ID:
2307 *value = xmctx->xm_visual->visinfo->visualid;
2308 break;
2309 case GLX_RENDER_TYPE:
2310 if (xmctx->xm_visual->mesa_visual.rgbMode)
2311 *value = GLX_RGBA_BIT;
2312 else
2313 *value = GLX_COLOR_INDEX_BIT;
2314 break;
2315 case GLX_SCREEN:
2316 *value = 0;
2317 return Success;
2318 default:
2319 return GLX_BAD_ATTRIBUTE;
2320 }
2321 return 0;
2322 }
2323
2324
2325 static void
2326 Fake_glXSelectEvent( Display *dpy, GLXDrawable drawable, unsigned long mask )
2327 {
2328 XMesaBuffer xmbuf = XMesaFindBuffer(dpy, drawable);
2329 if (xmbuf)
2330 xmbuf->selectedEvents = mask;
2331 }
2332
2333
2334 static void
2335 Fake_glXGetSelectedEvent( Display *dpy, GLXDrawable drawable,
2336 unsigned long *mask )
2337 {
2338 XMesaBuffer xmbuf = XMesaFindBuffer(dpy, drawable);
2339 if (xmbuf)
2340 *mask = xmbuf->selectedEvents;
2341 else
2342 *mask = 0;
2343 }
2344
2345
2346
2347 /*** GLX_SGI_swap_control ***/
2348
2349 static int
2350 Fake_glXSwapIntervalSGI(int interval)
2351 {
2352 (void) interval;
2353 return 0;
2354 }
2355
2356
2357
2358 /*** GLX_SGI_video_sync ***/
2359
2360 static unsigned int FrameCounter = 0;
2361
2362 static int
2363 Fake_glXGetVideoSyncSGI(unsigned int *count)
2364 {
2365 /* this is a bogus implementation */
2366 *count = FrameCounter++;
2367 return 0;
2368 }
2369
2370 static int
2371 Fake_glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count)
2372 {
2373 if (divisor <= 0 || remainder < 0)
2374 return GLX_BAD_VALUE;
2375 /* this is a bogus implementation */
2376 FrameCounter++;
2377 while (FrameCounter % divisor != remainder)
2378 FrameCounter++;
2379 *count = FrameCounter;
2380 return 0;
2381 }
2382
2383
2384
2385 /*** GLX_SGI_make_current_read ***/
2386
2387 static Bool
2388 Fake_glXMakeCurrentReadSGI(Display *dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx)
2389 {
2390 return Fake_glXMakeContextCurrent( dpy, draw, read, ctx );
2391 }
2392
2393 /* not used
2394 static GLXDrawable
2395 Fake_glXGetCurrentReadDrawableSGI(void)
2396 {
2397 return 0;
2398 }
2399 */
2400
2401
2402 /*** GLX_SGIX_video_source ***/
2403 #if defined(_VL_H)
2404
2405 static GLXVideoSourceSGIX
2406 Fake_glXCreateGLXVideoSourceSGIX(Display *dpy, int screen, VLServer server, VLPath path, int nodeClass, VLNode drainNode)
2407 {
2408 (void) dpy;
2409 (void) screen;
2410 (void) server;
2411 (void) path;
2412 (void) nodeClass;
2413 (void) drainNode;
2414 return 0;
2415 }
2416
2417 static void
2418 Fake_glXDestroyGLXVideoSourceSGIX(Display *dpy, GLXVideoSourceSGIX src)
2419 {
2420 (void) dpy;
2421 (void) src;
2422 }
2423
2424 #endif
2425
2426
2427 /*** GLX_EXT_import_context ***/
2428
2429 static void
2430 Fake_glXFreeContextEXT(Display *dpy, GLXContext context)
2431 {
2432 (void) dpy;
2433 (void) context;
2434 }
2435
2436 static GLXContextID
2437 Fake_glXGetContextIDEXT(const GLXContext context)
2438 {
2439 (void) context;
2440 return 0;
2441 }
2442
2443 static GLXContext
2444 Fake_glXImportContextEXT(Display *dpy, GLXContextID contextID)
2445 {
2446 (void) dpy;
2447 (void) contextID;
2448 return 0;
2449 }
2450
2451 static int
2452 Fake_glXQueryContextInfoEXT(Display *dpy, GLXContext context, int attribute, int *value)
2453 {
2454 (void) dpy;
2455 (void) context;
2456 (void) attribute;
2457 (void) value;
2458 return 0;
2459 }
2460
2461
2462
2463 /*** GLX_SGIX_fbconfig ***/
2464
2465 static int
2466 Fake_glXGetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGIX config, int attribute, int *value)
2467 {
2468 return Fake_glXGetFBConfigAttrib(dpy, config, attribute, value);
2469 }
2470
2471 static GLXFBConfigSGIX *
2472 Fake_glXChooseFBConfigSGIX(Display *dpy, int screen, int *attrib_list, int *nelements)
2473 {
2474 return (GLXFBConfig *) Fake_glXChooseFBConfig(dpy, screen, attrib_list, nelements);
2475 }
2476
2477
2478 static GLXPixmap
2479 Fake_glXCreateGLXPixmapWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap)
2480 {
2481 XMesaVisual xmvis = (XMesaVisual) config;
2482 XMesaBuffer xmbuf = XMesaCreatePixmapBuffer(xmvis, pixmap, 0);
2483 return xmbuf->frontxrb->pixmap; /* need to return an X ID */
2484 }
2485
2486
2487 static GLXContext
2488 Fake_glXCreateContextWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, Bool direct)
2489 {
2490 XMesaVisual xmvis = (XMesaVisual) config;
2491 struct fake_glx_context *glxCtx;
2492 struct fake_glx_context *shareCtx = (struct fake_glx_context *) share_list;
2493
2494 glxCtx = CALLOC_STRUCT(fake_glx_context);
2495 if (!glxCtx)
2496 return 0;
2497
2498 /* deallocate unused windows/buffers */
2499 XMesaGarbageCollect();
2500
2501 glxCtx->xmesaContext = XMesaCreateContext(xmvis,
2502 shareCtx ? shareCtx->xmesaContext : NULL);
2503 if (!glxCtx->xmesaContext) {
2504 _mesa_free(glxCtx);
2505 return NULL;
2506 }
2507
2508 glxCtx->xmesaContext->direct = GL_FALSE;
2509 glxCtx->glxContext.isDirect = GL_FALSE;
2510 glxCtx->glxContext.currentDpy = dpy;
2511 glxCtx->glxContext.xid = (XID) glxCtx; /* self pointer */
2512
2513 assert((void *) glxCtx == (void *) &(glxCtx->glxContext));
2514
2515 return (GLXContext) glxCtx;
2516 }
2517
2518
2519 static XVisualInfo *
2520 Fake_glXGetVisualFromFBConfigSGIX(Display *dpy, GLXFBConfigSGIX config)
2521 {
2522 return Fake_glXGetVisualFromFBConfig(dpy, config);
2523 }
2524
2525
2526 static GLXFBConfigSGIX
2527 Fake_glXGetFBConfigFromVisualSGIX(Display *dpy, XVisualInfo *vis)
2528 {
2529 XMesaVisual xmvis = find_glx_visual(dpy, vis);
2530 if (!xmvis) {
2531 /* This visual wasn't found with glXChooseVisual() */
2532 xmvis = create_glx_visual(dpy, vis);
2533 }
2534
2535 return (GLXFBConfigSGIX) xmvis;
2536 }
2537
2538
2539
2540 /*** GLX_SGIX_pbuffer ***/
2541
2542 static GLXPbufferSGIX
2543 Fake_glXCreateGLXPbufferSGIX(Display *dpy, GLXFBConfigSGIX config,
2544 unsigned int width, unsigned int height,
2545 int *attribList)
2546 {
2547 XMesaVisual xmvis = (XMesaVisual) config;
2548 XMesaBuffer xmbuf;
2549 const int *attrib;
2550 GLboolean useLargest = GL_FALSE, preserveContents = GL_FALSE;
2551
2552 (void) dpy;
2553
2554 for (attrib = attribList; attrib && *attrib; attrib++) {
2555 switch (*attrib) {
2556 case GLX_PRESERVED_CONTENTS_SGIX:
2557 attrib++;
2558 preserveContents = *attrib; /* ignored */
2559 break;
2560 case GLX_LARGEST_PBUFFER_SGIX:
2561 attrib++;
2562 useLargest = *attrib; /* ignored */
2563 break;
2564 default:
2565 return 0;
2566 }
2567 }
2568
2569 /* not used at this time */
2570 (void) useLargest;
2571 (void) preserveContents;
2572
2573 xmbuf = XMesaCreatePBuffer( xmvis, 0, width, height);
2574 /* A GLXPbuffer handle must be an X Drawable because that's what
2575 * glXMakeCurrent takes.
2576 */
2577 return (GLXPbuffer) xmbuf->frontxrb->pixmap;
2578 }
2579
2580
2581 static void
2582 Fake_glXDestroyGLXPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuf)
2583 {
2584 XMesaBuffer xmbuf = XMesaFindBuffer(dpy, pbuf);
2585 if (xmbuf) {
2586 XMesaDestroyBuffer(xmbuf);
2587 }
2588 }
2589
2590
2591 static int
2592 Fake_glXQueryGLXPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuf, int attribute, unsigned int *value)
2593 {
2594 const XMesaBuffer xmbuf = XMesaFindBuffer(dpy, pbuf);
2595
2596 if (!xmbuf) {
2597 /* Generate GLXBadPbufferSGIX for bad pbuffer */
2598 return 0;
2599 }
2600
2601 switch (attribute) {
2602 case GLX_PRESERVED_CONTENTS_SGIX:
2603 *value = True;
2604 break;
2605 case GLX_LARGEST_PBUFFER_SGIX:
2606 *value = xmbuf->mesa_buffer.Width * xmbuf->mesa_buffer.Height;
2607 break;
2608 case GLX_WIDTH_SGIX:
2609 *value = xmbuf->mesa_buffer.Width;
2610 break;
2611 case GLX_HEIGHT_SGIX:
2612 *value = xmbuf->mesa_buffer.Height;
2613 break;
2614 case GLX_EVENT_MASK_SGIX:
2615 *value = 0; /* XXX might be wrong */
2616 break;
2617 default:
2618 *value = 0;
2619 }
2620 return 0;
2621 }
2622
2623
2624 static void
2625 Fake_glXSelectEventSGIX(Display *dpy, GLXDrawable drawable, unsigned long mask)
2626 {
2627 XMesaBuffer xmbuf = XMesaFindBuffer(dpy, drawable);
2628 if (xmbuf) {
2629 /* Note: we'll never generate clobber events */
2630 xmbuf->selectedEvents = mask;
2631 }
2632 }
2633
2634
2635 static void
2636 Fake_glXGetSelectedEventSGIX(Display *dpy, GLXDrawable drawable, unsigned long *mask)
2637 {
2638 XMesaBuffer xmbuf = XMesaFindBuffer(dpy, drawable);
2639 if (xmbuf) {
2640 *mask = xmbuf->selectedEvents;
2641 }
2642 else {
2643 *mask = 0;
2644 }
2645 }
2646
2647
2648
2649 /*** GLX_SGI_cushion ***/
2650
2651 static void
2652 Fake_glXCushionSGI(Display *dpy, Window win, float cushion)
2653 {
2654 (void) dpy;
2655 (void) win;
2656 (void) cushion;
2657 }
2658
2659
2660
2661 /*** GLX_SGIX_video_resize ***/
2662
2663 static int
2664 Fake_glXBindChannelToWindowSGIX(Display *dpy, int screen, int channel , Window window)
2665 {
2666 (void) dpy;
2667 (void) screen;
2668 (void) channel;
2669 (void) window;
2670 return 0;
2671 }
2672
2673 static int
2674 Fake_glXChannelRectSGIX(Display *dpy, int screen, int channel, int x, int y, int w, int h)
2675 {
2676 (void) dpy;
2677 (void) screen;
2678 (void) channel;
2679 (void) x;
2680 (void) y;
2681 (void) w;
2682 (void) h;
2683 return 0;
2684 }
2685
2686 static int
2687 Fake_glXQueryChannelRectSGIX(Display *dpy, int screen, int channel, int *x, int *y, int *w, int *h)
2688 {
2689 (void) dpy;
2690 (void) screen;
2691 (void) channel;
2692 (void) x;
2693 (void) y;
2694 (void) w;
2695 (void) h;
2696 return 0;
2697 }
2698
2699 static int
2700 Fake_glXQueryChannelDeltasSGIX(Display *dpy, int screen, int channel, int *dx, int *dy, int *dw, int *dh)
2701 {
2702 (void) dpy;
2703 (void) screen;
2704 (void) channel;
2705 (void) dx;
2706 (void) dy;
2707 (void) dw;
2708 (void) dh;
2709 return 0;
2710 }
2711
2712 static int
2713 Fake_glXChannelRectSyncSGIX(Display *dpy, int screen, int channel, GLenum synctype)
2714 {
2715 (void) dpy;
2716 (void) screen;
2717 (void) channel;
2718 (void) synctype;
2719 return 0;
2720 }
2721
2722
2723
2724 /*** GLX_SGIX_dmbuffer **/
2725
2726 #if defined(_DM_BUFFER_H_)
2727 static Bool
2728 Fake_glXAssociateDMPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer)
2729 {
2730 (void) dpy;
2731 (void) pbuffer;
2732 (void) params;
2733 (void) dmbuffer;
2734 return False;
2735 }
2736 #endif
2737
2738
2739 /*** GLX_SGIX_swap_group ***/
2740
2741 static void
2742 Fake_glXJoinSwapGroupSGIX(Display *dpy, GLXDrawable drawable, GLXDrawable member)
2743 {
2744 (void) dpy;
2745 (void) drawable;
2746 (void) member;
2747 }
2748
2749
2750
2751 /*** GLX_SGIX_swap_barrier ***/
2752
2753 static void
2754 Fake_glXBindSwapBarrierSGIX(Display *dpy, GLXDrawable drawable, int barrier)
2755 {
2756 (void) dpy;
2757 (void) drawable;
2758 (void) barrier;
2759 }
2760
2761 static Bool
2762 Fake_glXQueryMaxSwapBarriersSGIX(Display *dpy, int screen, int *max)
2763 {
2764 (void) dpy;
2765 (void) screen;
2766 (void) max;
2767 return False;
2768 }
2769
2770
2771
2772 /*** GLX_SUN_get_transparent_index ***/
2773
2774 static Status
2775 Fake_glXGetTransparentIndexSUN(Display *dpy, Window overlay, Window underlay, long *pTransparent)
2776 {
2777 (void) dpy;
2778 (void) overlay;
2779 (void) underlay;
2780 (void) pTransparent;
2781 return 0;
2782 }
2783
2784
2785
2786 /*** GLX_MESA_release_buffers ***/
2787
2788 /*
2789 * Release the depth, stencil, accum buffers attached to a GLXDrawable
2790 * (a window or pixmap) prior to destroying the GLXDrawable.
2791 */
2792 static Bool
2793 Fake_glXReleaseBuffersMESA( Display *dpy, GLXDrawable d )
2794 {
2795 XMesaBuffer b = XMesaFindBuffer(dpy, d);
2796 if (b) {
2797 XMesaDestroyBuffer(b);
2798 return True;
2799 }
2800 return False;
2801 }
2802
2803
2804
2805 /*** GLX_MESA_set_3dfx_mode ***/
2806
2807 static Bool
2808 Fake_glXSet3DfxModeMESA( int mode )
2809 {
2810 return XMesaSetFXmode( mode );
2811 }
2812
2813
2814
2815 /*** GLX_NV_vertex_array range ***/
2816 static void *
2817 Fake_glXAllocateMemoryNV( GLsizei size,
2818 GLfloat readFrequency,
2819 GLfloat writeFrequency,
2820 GLfloat priority )
2821 {
2822 (void) size;
2823 (void) readFrequency;
2824 (void) writeFrequency;
2825 (void) priority;
2826 return NULL;
2827 }
2828
2829
2830 static void
2831 Fake_glXFreeMemoryNV( GLvoid *pointer )
2832 {
2833 (void) pointer;
2834 }
2835
2836
2837 /*** GLX_MESA_agp_offset ***/
2838
2839 static GLuint
2840 Fake_glXGetAGPOffsetMESA( const GLvoid *pointer )
2841 {
2842 (void) pointer;
2843 return ~0;
2844 }
2845
2846
2847 /* silence warning */
2848 extern struct _glxapi_table *_mesa_GetGLXDispatchTable(void);
2849
2850
2851 /**
2852 * Create a new GLX API dispatch table with its function pointers
2853 * initialized to point to Mesa's "fake" GLX API functions.
2854 * Note: there's a similar function (_real_GetGLXDispatchTable) that
2855 * returns a new dispatch table with all pointers initalized to point
2856 * to "real" GLX functions (which understand GLX wire protocol, etc).
2857 */
2858 struct _glxapi_table *
2859 _mesa_GetGLXDispatchTable(void)
2860 {
2861 static struct _glxapi_table glx;
2862
2863 /* be sure our dispatch table size <= libGL's table */
2864 {
2865 GLuint size = sizeof(struct _glxapi_table) / sizeof(void *);
2866 (void) size;
2867 assert(_glxapi_get_dispatch_table_size() >= size);
2868 }
2869
2870 /* initialize the whole table to no-ops */
2871 _glxapi_set_no_op_table(&glx);
2872
2873 /* now initialize the table with the functions I implement */
2874 glx.ChooseVisual = Fake_glXChooseVisual;
2875 glx.CopyContext = Fake_glXCopyContext;
2876 glx.CreateContext = Fake_glXCreateContext;
2877 glx.CreateGLXPixmap = Fake_glXCreateGLXPixmap;
2878 glx.DestroyContext = Fake_glXDestroyContext;
2879 glx.DestroyGLXPixmap = Fake_glXDestroyGLXPixmap;
2880 glx.GetConfig = Fake_glXGetConfig;
2881 /*glx.GetCurrentContext = Fake_glXGetCurrentContext;*/
2882 /*glx.GetCurrentDrawable = Fake_glXGetCurrentDrawable;*/
2883 glx.IsDirect = Fake_glXIsDirect;
2884 glx.MakeCurrent = Fake_glXMakeCurrent;
2885 glx.QueryExtension = Fake_glXQueryExtension;
2886 glx.QueryVersion = Fake_glXQueryVersion;
2887 glx.SwapBuffers = Fake_glXSwapBuffers;
2888 glx.UseXFont = Fake_glXUseXFont;
2889 glx.WaitGL = Fake_glXWaitGL;
2890 glx.WaitX = Fake_glXWaitX;
2891
2892 /*** GLX_VERSION_1_1 ***/
2893 glx.GetClientString = Fake_glXGetClientString;
2894 glx.QueryExtensionsString = Fake_glXQueryExtensionsString;
2895 glx.QueryServerString = Fake_glXQueryServerString;
2896
2897 /*** GLX_VERSION_1_2 ***/
2898 /*glx.GetCurrentDisplay = Fake_glXGetCurrentDisplay;*/
2899
2900 /*** GLX_VERSION_1_3 ***/
2901 glx.ChooseFBConfig = Fake_glXChooseFBConfig;
2902 glx.CreateNewContext = Fake_glXCreateNewContext;
2903 glx.CreatePbuffer = Fake_glXCreatePbuffer;
2904 glx.CreatePixmap = Fake_glXCreatePixmap;
2905 glx.CreateWindow = Fake_glXCreateWindow;
2906 glx.DestroyPbuffer = Fake_glXDestroyPbuffer;
2907 glx.DestroyPixmap = Fake_glXDestroyPixmap;
2908 glx.DestroyWindow = Fake_glXDestroyWindow;
2909 /*glx.GetCurrentReadDrawable = Fake_glXGetCurrentReadDrawable;*/
2910 glx.GetFBConfigAttrib = Fake_glXGetFBConfigAttrib;
2911 glx.GetFBConfigs = Fake_glXGetFBConfigs;
2912 glx.GetSelectedEvent = Fake_glXGetSelectedEvent;
2913 glx.GetVisualFromFBConfig = Fake_glXGetVisualFromFBConfig;
2914 glx.MakeContextCurrent = Fake_glXMakeContextCurrent;
2915 glx.QueryContext = Fake_glXQueryContext;
2916 glx.QueryDrawable = Fake_glXQueryDrawable;
2917 glx.SelectEvent = Fake_glXSelectEvent;
2918
2919 /*** GLX_SGI_swap_control ***/
2920 glx.SwapIntervalSGI = Fake_glXSwapIntervalSGI;
2921
2922 /*** GLX_SGI_video_sync ***/
2923 glx.GetVideoSyncSGI = Fake_glXGetVideoSyncSGI;
2924 glx.WaitVideoSyncSGI = Fake_glXWaitVideoSyncSGI;
2925
2926 /*** GLX_SGI_make_current_read ***/
2927 glx.MakeCurrentReadSGI = Fake_glXMakeCurrentReadSGI;
2928 /*glx.GetCurrentReadDrawableSGI = Fake_glXGetCurrentReadDrawableSGI;*/
2929
2930 /*** GLX_SGIX_video_source ***/
2931 #if defined(_VL_H)
2932 glx.CreateGLXVideoSourceSGIX = Fake_glXCreateGLXVideoSourceSGIX;
2933 glx.DestroyGLXVideoSourceSGIX = Fake_glXDestroyGLXVideoSourceSGIX;
2934 #endif
2935
2936 /*** GLX_EXT_import_context ***/
2937 glx.FreeContextEXT = Fake_glXFreeContextEXT;
2938 glx.GetContextIDEXT = Fake_glXGetContextIDEXT;
2939 /*glx.GetCurrentDisplayEXT = Fake_glXGetCurrentDisplayEXT;*/
2940 glx.ImportContextEXT = Fake_glXImportContextEXT;
2941 glx.QueryContextInfoEXT = Fake_glXQueryContextInfoEXT;
2942
2943 /*** GLX_SGIX_fbconfig ***/
2944 glx.GetFBConfigAttribSGIX = Fake_glXGetFBConfigAttribSGIX;
2945 glx.ChooseFBConfigSGIX = Fake_glXChooseFBConfigSGIX;
2946 glx.CreateGLXPixmapWithConfigSGIX = Fake_glXCreateGLXPixmapWithConfigSGIX;
2947 glx.CreateContextWithConfigSGIX = Fake_glXCreateContextWithConfigSGIX;
2948 glx.GetVisualFromFBConfigSGIX = Fake_glXGetVisualFromFBConfigSGIX;
2949 glx.GetFBConfigFromVisualSGIX = Fake_glXGetFBConfigFromVisualSGIX;
2950
2951 /*** GLX_SGIX_pbuffer ***/
2952 glx.CreateGLXPbufferSGIX = Fake_glXCreateGLXPbufferSGIX;
2953 glx.DestroyGLXPbufferSGIX = Fake_glXDestroyGLXPbufferSGIX;
2954 glx.QueryGLXPbufferSGIX = Fake_glXQueryGLXPbufferSGIX;
2955 glx.SelectEventSGIX = Fake_glXSelectEventSGIX;
2956 glx.GetSelectedEventSGIX = Fake_glXGetSelectedEventSGIX;
2957
2958 /*** GLX_SGI_cushion ***/
2959 glx.CushionSGI = Fake_glXCushionSGI;
2960
2961 /*** GLX_SGIX_video_resize ***/
2962 glx.BindChannelToWindowSGIX = Fake_glXBindChannelToWindowSGIX;
2963 glx.ChannelRectSGIX = Fake_glXChannelRectSGIX;
2964 glx.QueryChannelRectSGIX = Fake_glXQueryChannelRectSGIX;
2965 glx.QueryChannelDeltasSGIX = Fake_glXQueryChannelDeltasSGIX;
2966 glx.ChannelRectSyncSGIX = Fake_glXChannelRectSyncSGIX;
2967
2968 /*** GLX_SGIX_dmbuffer **/
2969 #if defined(_DM_BUFFER_H_)
2970 glx.AssociateDMPbufferSGIX = NULL;
2971 #endif
2972
2973 /*** GLX_SGIX_swap_group ***/
2974 glx.JoinSwapGroupSGIX = Fake_glXJoinSwapGroupSGIX;
2975
2976 /*** GLX_SGIX_swap_barrier ***/
2977 glx.BindSwapBarrierSGIX = Fake_glXBindSwapBarrierSGIX;
2978 glx.QueryMaxSwapBarriersSGIX = Fake_glXQueryMaxSwapBarriersSGIX;
2979
2980 /*** GLX_SUN_get_transparent_index ***/
2981 glx.GetTransparentIndexSUN = Fake_glXGetTransparentIndexSUN;
2982
2983 /*** GLX_MESA_copy_sub_buffer ***/
2984 glx.CopySubBufferMESA = Fake_glXCopySubBufferMESA;
2985
2986 /*** GLX_MESA_release_buffers ***/
2987 glx.ReleaseBuffersMESA = Fake_glXReleaseBuffersMESA;
2988
2989 /*** GLX_MESA_pixmap_colormap ***/
2990 glx.CreateGLXPixmapMESA = Fake_glXCreateGLXPixmapMESA;
2991
2992 /*** GLX_MESA_set_3dfx_mode ***/
2993 glx.Set3DfxModeMESA = Fake_glXSet3DfxModeMESA;
2994
2995 /*** GLX_NV_vertex_array_range ***/
2996 glx.AllocateMemoryNV = Fake_glXAllocateMemoryNV;
2997 glx.FreeMemoryNV = Fake_glXFreeMemoryNV;
2998
2999 /*** GLX_MESA_agp_offset ***/
3000 glx.GetAGPOffsetMESA = Fake_glXGetAGPOffsetMESA;
3001
3002 return &glx;
3003 }