2 * Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
3 * Copyright © 2008 Red Hat, Inc.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Soft-
7 * ware"), to deal in the Software without restriction, including without
8 * limitation the rights to use, copy, modify, merge, publish, distribute,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, provided that the above copyright
11 * notice(s) and this permission notice appear in all copies of the Soft-
12 * ware and that both the above copyright notice(s) and this permission
13 * notice appear in supporting documentation.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
17 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
18 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
19 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
20 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
22 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
23 * MANCE OF THIS SOFTWARE.
25 * Except as contained in this notice, the name of a copyright holder shall
26 * not be used in advertising or otherwise to promote the sale, use or
27 * other dealings in this Software without prior written authorization of
28 * the copyright holder.
31 * Kevin E. Martin <kevin@precisioninsight.com>
32 * Brian Paul <brian@precisioninsight.com>
33 * Kristian Høgsberg (krh@redhat.com)
36 #ifdef GLX_DIRECT_RENDERING
41 #include "glxclient.h"
42 #include "glcontextmodes.h"
43 #include "dri_common.h"
53 InfoMessageF(const char *f
, ...)
58 if ((env
= getenv("LIBGL_DEBUG")) && strstr(env
, "verbose")) {
59 fprintf(stderr
, "libGL: ");
61 vfprintf(stderr
, f
, args
);
67 * Print error to stderr, unless LIBGL_DEBUG=="quiet".
70 ErrorMessageF(const char *f
, ...)
75 if ((env
= getenv("LIBGL_DEBUG")) && !strstr(env
, "quiet")) {
76 fprintf(stderr
, "libGL error: ");
78 vfprintf(stderr
, f
, args
);
83 #ifndef DEFAULT_DRIVER_DIR
84 /* this is normally defined in Mesa/configs/default with DRI_DRIVER_SEARCH_PATH */
85 #define DEFAULT_DRIVER_DIR "/usr/local/lib/dri"
89 * Try to \c dlopen the named driver.
91 * This function adds the "_dri.so" suffix to the driver name and searches the
92 * directories specified by the \c LIBGL_DRIVERS_PATH environment variable in
93 * order to find the driver.
95 * \param driverName - a name like "tdfx", "i810", "mga", etc.
98 * A handle from \c dlopen, or \c NULL if driver file not found.
101 driOpenDriver(const char *driverName
)
103 void *glhandle
, *handle
;
104 const char *libPaths
, *p
, *next
;
105 char realDriverName
[200];
108 /* Attempt to make sure libGL symbols will be visible to the driver */
109 glhandle
= dlopen("libGL.so.1", RTLD_NOW
| RTLD_GLOBAL
);
112 if (geteuid() == getuid()) {
113 /* don't allow setuid apps to use LIBGL_DRIVERS_PATH */
114 libPaths
= getenv("LIBGL_DRIVERS_PATH");
116 libPaths
= getenv("LIBGL_DRIVERS_DIR"); /* deprecated */
118 if (libPaths
== NULL
)
119 libPaths
= DEFAULT_DRIVER_DIR
;
122 for (p
= libPaths
; *p
; p
= next
) {
123 next
= strchr(p
, ':');
134 snprintf(realDriverName
, sizeof realDriverName
,
135 "%.*s/tls/%s_dri.so", len
, p
, driverName
);
136 InfoMessageF("OpenDriver: trying %s\n", realDriverName
);
137 handle
= dlopen(realDriverName
, RTLD_NOW
| RTLD_GLOBAL
);
140 if (handle
== NULL
) {
141 snprintf(realDriverName
, sizeof realDriverName
,
142 "%.*s/%s_dri.so", len
, p
, driverName
);
143 InfoMessageF("OpenDriver: trying %s\n", realDriverName
);
144 handle
= dlopen(realDriverName
, RTLD_NOW
| RTLD_GLOBAL
);
150 ErrorMessageF("dlopen %s failed (%s)\n", realDriverName
, dlerror());
154 ErrorMessageF("unable to load driver: %s_dri.so\n", driverName
);
162 _X_HIDDEN
const __DRIsystemTimeExtension systemTimeExtension
= {
163 {__DRI_SYSTEM_TIME
, __DRI_SYSTEM_TIME_VERSION
},
168 #define __ATTRIB(attrib, field) \
169 { attrib, offsetof(__GLcontextModes, field) }
173 unsigned int attrib
, offset
;
175 __ATTRIB(__DRI_ATTRIB_BUFFER_SIZE
, rgbBits
),
176 __ATTRIB(__DRI_ATTRIB_LEVEL
, level
),
177 __ATTRIB(__DRI_ATTRIB_RED_SIZE
, redBits
),
178 __ATTRIB(__DRI_ATTRIB_GREEN_SIZE
, greenBits
),
179 __ATTRIB(__DRI_ATTRIB_BLUE_SIZE
, blueBits
),
180 __ATTRIB(__DRI_ATTRIB_ALPHA_SIZE
, alphaBits
),
181 __ATTRIB(__DRI_ATTRIB_DEPTH_SIZE
, depthBits
),
182 __ATTRIB(__DRI_ATTRIB_STENCIL_SIZE
, stencilBits
),
183 __ATTRIB(__DRI_ATTRIB_ACCUM_RED_SIZE
, accumRedBits
),
184 __ATTRIB(__DRI_ATTRIB_ACCUM_GREEN_SIZE
, accumGreenBits
),
185 __ATTRIB(__DRI_ATTRIB_ACCUM_BLUE_SIZE
, accumBlueBits
),
186 __ATTRIB(__DRI_ATTRIB_ACCUM_ALPHA_SIZE
, accumAlphaBits
),
187 __ATTRIB(__DRI_ATTRIB_SAMPLE_BUFFERS
, sampleBuffers
),
188 __ATTRIB(__DRI_ATTRIB_SAMPLES
, samples
),
189 __ATTRIB(__DRI_ATTRIB_DOUBLE_BUFFER
, doubleBufferMode
),
190 __ATTRIB(__DRI_ATTRIB_STEREO
, stereoMode
),
191 __ATTRIB(__DRI_ATTRIB_AUX_BUFFERS
, numAuxBuffers
),
193 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_TYPE
, transparentPixel
),
194 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_INDEX_VALUE
, transparentIndex
),
195 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_RED_VALUE
, transparentRed
),
196 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_GREEN_VALUE
, transparentGreen
),
197 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_BLUE_VALUE
, transparentBlue
),
198 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_ALPHA_VALUE
, transparentAlpha
),
199 __ATTRIB(__DRI_ATTRIB_RED_MASK
, redMask
),
200 __ATTRIB(__DRI_ATTRIB_GREEN_MASK
, greenMask
),
201 __ATTRIB(__DRI_ATTRIB_BLUE_MASK
, blueMask
),
202 __ATTRIB(__DRI_ATTRIB_ALPHA_MASK
, alphaMask
),
204 __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_WIDTH
, maxPbufferWidth
),
205 __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_HEIGHT
, maxPbufferHeight
),
206 __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_PIXELS
, maxPbufferPixels
),
207 __ATTRIB(__DRI_ATTRIB_OPTIMAL_PBUFFER_WIDTH
, optimalPbufferWidth
),
208 __ATTRIB(__DRI_ATTRIB_OPTIMAL_PBUFFER_HEIGHT
, optimalPbufferHeight
),
210 __ATTRIB(__DRI_ATTRIB_SWAP_METHOD
, swapMethod
),
212 __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGB
, bindToTextureRgb
),
213 __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGBA
, bindToTextureRgba
),
214 __ATTRIB(__DRI_ATTRIB_BIND_TO_MIPMAP_TEXTURE
,
215 bindToMipmapTexture
),
216 __ATTRIB(__DRI_ATTRIB_YINVERTED
, yInverted
),};
218 #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
221 scalarEqual(__GLcontextModes
* mode
, unsigned int attrib
, unsigned int value
)
223 unsigned int glxValue
;
226 for (i
= 0; i
< ARRAY_SIZE(attribMap
); i
++)
227 if (attribMap
[i
].attrib
== attrib
) {
228 glxValue
= *(unsigned int *) ((char *) mode
+ attribMap
[i
].offset
);
229 return glxValue
== GLX_DONT_CARE
|| glxValue
== value
;
232 return GL_TRUE
; /* Is a non-existing attribute equal to value? */
236 driConfigEqual(const __DRIcoreExtension
* core
,
237 __GLcontextModes
* modes
, const __DRIconfig
* driConfig
)
239 unsigned int attrib
, value
, glxValue
;
243 while (core
->indexConfigAttrib(driConfig
, i
++, &attrib
, &value
)) {
245 case __DRI_ATTRIB_RENDER_TYPE
:
247 if (value
& __DRI_ATTRIB_RGBA_BIT
) {
248 glxValue
|= GLX_RGBA_BIT
;
250 else if (value
& __DRI_ATTRIB_COLOR_INDEX_BIT
) {
251 glxValue
|= GLX_COLOR_INDEX_BIT
;
253 if (glxValue
!= modes
->renderType
)
257 case __DRI_ATTRIB_CONFIG_CAVEAT
:
258 if (value
& __DRI_ATTRIB_NON_CONFORMANT_CONFIG
)
259 glxValue
= GLX_NON_CONFORMANT_CONFIG
;
260 else if (value
& __DRI_ATTRIB_SLOW_BIT
)
261 glxValue
= GLX_SLOW_CONFIG
;
264 if (glxValue
!= modes
->visualRating
)
268 case __DRI_ATTRIB_BIND_TO_TEXTURE_TARGETS
:
270 if (value
& __DRI_ATTRIB_TEXTURE_1D_BIT
)
271 glxValue
|= GLX_TEXTURE_1D_BIT_EXT
;
272 if (value
& __DRI_ATTRIB_TEXTURE_2D_BIT
)
273 glxValue
|= GLX_TEXTURE_2D_BIT_EXT
;
274 if (value
& __DRI_ATTRIB_TEXTURE_RECTANGLE_BIT
)
275 glxValue
|= GLX_TEXTURE_RECTANGLE_BIT_EXT
;
276 if (modes
->bindToTextureTargets
!= GLX_DONT_CARE
&&
277 glxValue
!= modes
->bindToTextureTargets
)
282 if (!scalarEqual(modes
, attrib
, value
))
290 static __GLcontextModes
*
291 createDriMode(const __DRIcoreExtension
* core
,
292 __GLcontextModes
* modes
, const __DRIconfig
** driConfigs
)
294 __GLXDRIconfigPrivate
*config
;
297 for (i
= 0; driConfigs
[i
]; i
++) {
298 if (driConfigEqual(core
, modes
, driConfigs
[i
]))
302 if (driConfigs
[i
] == NULL
)
305 config
= Xmalloc(sizeof *config
);
309 config
->modes
= *modes
;
310 config
->driConfig
= driConfigs
[i
];
312 return &config
->modes
;
315 _X_HIDDEN __GLcontextModes
*
316 driConvertConfigs(const __DRIcoreExtension
* core
,
317 __GLcontextModes
* modes
, const __DRIconfig
** configs
)
319 __GLcontextModes head
, *tail
, *m
;
323 for (m
= modes
; m
; m
= m
->next
) {
324 tail
->next
= createDriMode(core
, m
, configs
);
325 if (tail
->next
== NULL
) {
326 /* no matching dri config for m */
334 _gl_context_modes_destroy(modes
);
339 /* Bind DRI1 specific extensions */
341 driBindExtensions(__GLXscreenConfigs
*psc
)
343 const __DRIextension
**extensions
;
346 extensions
= psc
->core
->getExtensions(psc
->__driScreen
);
348 for (i
= 0; extensions
[i
]; i
++) {
349 #ifdef __DRI_SWAP_CONTROL
350 /* No DRI2 support for swap_control at the moment, since SwapBuffers
351 * is done by the X server */
352 if (strcmp(extensions
[i
]->name
, __DRI_SWAP_CONTROL
) == 0) {
353 psc
->swapControl
= (__DRIswapControlExtension
*) extensions
[i
];
354 __glXEnableDirectExtension(psc
, "GLX_SGI_swap_control");
355 __glXEnableDirectExtension(psc
, "GLX_MESA_swap_control");
359 #ifdef __DRI_MEDIA_STREAM_COUNTER
360 if (strcmp(extensions
[i
]->name
, __DRI_MEDIA_STREAM_COUNTER
) == 0) {
361 psc
->msc
= (__DRImediaStreamCounterExtension
*) extensions
[i
];
362 __glXEnableDirectExtension(psc
, "GLX_SGI_video_sync");
366 #ifdef __DRI_SWAP_BUFFER_COUNTER
367 /* No driver supports this at this time and the extension is
368 * not defined in dri_interface.h. Will enable
369 * GLX_OML_sync_control if implemented. */
372 /* Ignore unknown extensions */
376 /* Bind DRI2 specific extensions */
378 dri2BindExtensions(__GLXscreenConfigs
*psc
)
380 const __DRIextension
**extensions
;
383 extensions
= psc
->core
->getExtensions(psc
->__driScreen
);
385 for (i
= 0; extensions
[i
]; i
++) {
386 #ifdef __DRI_TEX_BUFFER
387 if ((strcmp(extensions
[i
]->name
, __DRI_TEX_BUFFER
) == 0)) {
388 psc
->texBuffer
= (__DRItexBufferExtension
*) extensions
[i
];
389 __glXEnableDirectExtension(psc
, "GLX_EXT_texture_from_pixmap");
393 __glXEnableDirectExtension(psc
, "GLX_SGI_video_sync");
394 __glXEnableDirectExtension(psc
, "GLX_SGI_swap_control");
395 __glXEnableDirectExtension(psc
, "GLX_MESA_swap_control");
397 /* FIXME: if DRI2 version supports it... */
398 __glXEnableDirectExtension(psc
, "INTEL_swap_event");
401 if ((strcmp(extensions
[i
]->name
, __DRI2_FLUSH
) == 0)) {
402 psc
->f
= (__DRI2flushExtension
*) extensions
[i
];
403 /* internal driver extension, no GL extension exposed */
409 /* Bind extensions common to DRI1 and DRI2 */
411 driBindCommonExtensions(__GLXscreenConfigs
*psc
)
413 const __DRIextension
**extensions
;
416 extensions
= psc
->core
->getExtensions(psc
->__driScreen
);
418 for (i
= 0; extensions
[i
]; i
++) {
419 #ifdef __DRI_COPY_SUB_BUFFER
420 if (strcmp(extensions
[i
]->name
, __DRI_COPY_SUB_BUFFER
) == 0) {
421 psc
->driCopySubBuffer
= (__DRIcopySubBufferExtension
*) extensions
[i
];
422 __glXEnableDirectExtension(psc
, "GLX_MESA_copy_sub_buffer");
426 #ifdef __DRI_ALLOCATE
427 if (strcmp(extensions
[i
]->name
, __DRI_ALLOCATE
) == 0) {
428 psc
->allocate
= (__DRIallocateExtension
*) extensions
[i
];
429 __glXEnableDirectExtension(psc
, "GLX_MESA_allocate_memory");
433 #ifdef __DRI_FRAME_TRACKING
434 if (strcmp(extensions
[i
]->name
, __DRI_FRAME_TRACKING
) == 0) {
435 psc
->frameTracking
= (__DRIframeTrackingExtension
*) extensions
[i
];
436 __glXEnableDirectExtension(psc
, "GLX_MESA_swap_frame_usage");
440 #ifdef __DRI_READ_DRAWABLE
441 if (strcmp(extensions
[i
]->name
, __DRI_READ_DRAWABLE
) == 0) {
442 __glXEnableDirectExtension(psc
, "GLX_SGI_make_current_read");
446 /* Ignore unknown extensions */
450 #endif /* GLX_DIRECT_RENDERING */