2 * (C) Copyright IBM Corporation 2002, 2004
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VA LINUX SYSTEM, IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
27 * Utility functions for DRI drivers.
29 * \author Ian Romanick <idr@us.ibm.com>
37 #include "main/macros.h"
38 #include "main/mtypes.h"
39 #include "main/cpuinfo.h"
40 #include "main/extensions.h"
45 * Create the \c GL_RENDERER string for DRI drivers.
47 * Almost all DRI drivers use a \c GL_RENDERER string of the form:
49 * "Mesa DRI <chip> <driver date> <AGP speed) <CPU information>"
51 * Using the supplied chip name, driver data, and AGP speed, this function
54 * \param buffer Buffer to hold the \c GL_RENDERER string.
55 * \param hardware_name Name of the hardware.
56 * \param agp_mode AGP mode (speed).
59 * The length of the string stored in \c buffer. This does \b not include
60 * the terminating \c NUL character.
63 driGetRendererString( char * buffer
, const char * hardware_name
,
69 offset
= sprintf( buffer
, "Mesa DRI %s", hardware_name
);
71 /* Append any AGP-specific information.
78 offset
+= sprintf( & buffer
[ offset
], " AGP %ux", agp_mode
);
85 /* Append any CPU-specific information.
87 cpu
= _mesa_get_cpu_string();
89 offset
+= sprintf(buffer
+ offset
, " %s", cpu
);
98 * Creates a set of \c struct gl_config that a driver will expose.
100 * A set of \c struct gl_config will be created based on the supplied
101 * parameters. The number of modes processed will be 2 *
102 * \c num_depth_stencil_bits * \c num_db_modes.
104 * For the most part, data is just copied from \c depth_bits, \c stencil_bits,
105 * \c db_modes, and \c visType into each \c struct gl_config element.
106 * However, the meanings of \c fb_format and \c fb_type require further
107 * explanation. The \c fb_format specifies which color components are in
108 * each pixel and what the default order is. For example, \c GL_RGB specifies
109 * that red, green, blue are available and red is in the "most significant"
110 * position and blue is in the "least significant". The \c fb_type specifies
111 * the bit sizes of each component and the actual ordering. For example, if
112 * \c GL_UNSIGNED_SHORT_5_6_5_REV is specified with \c GL_RGB, bits [15:11]
113 * are the blue value, bits [10:5] are the green value, and bits [4:0] are
116 * One sublte issue is the combination of \c GL_RGB or \c GL_BGR and either
117 * of the \c GL_UNSIGNED_INT_8_8_8_8 modes. The resulting mask values in the
118 * \c struct gl_config structure is \b identical to the \c GL_RGBA or
119 * \c GL_BGRA case, except the \c alphaMask is zero. This means that, as
120 * far as this routine is concerned, \c GL_RGB with \c GL_UNSIGNED_INT_8_8_8_8
121 * still uses 32-bits.
123 * If in doubt, look at the tables used in the function.
125 * \param ptr_to_modes Pointer to a pointer to a linked list of
126 * \c struct gl_config. Upon completion, a pointer to
127 * the next element to be process will be stored here.
128 * If the function fails and returns \c GL_FALSE, this
129 * value will be unmodified, but some elements in the
130 * linked list may be modified.
131 * \param format Mesa mesa_format enum describing the pixel format
132 * \param depth_bits Array of depth buffer sizes to be exposed.
133 * \param stencil_bits Array of stencil buffer sizes to be exposed.
134 * \param num_depth_stencil_bits Number of entries in both \c depth_bits and
136 * \param db_modes Array of buffer swap modes. If an element has a
137 * value of \c GLX_NONE, then it represents a
138 * single-buffered mode. Other valid values are
139 * \c GLX_SWAP_EXCHANGE_OML, \c GLX_SWAP_COPY_OML, and
140 * \c GLX_SWAP_UNDEFINED_OML. See the
141 * GLX_OML_swap_method extension spec for more details.
142 * \param num_db_modes Number of entries in \c db_modes.
143 * \param msaa_samples Array of msaa sample count. 0 represents a visual
144 * without a multisample buffer.
145 * \param num_msaa_modes Number of entries in \c msaa_samples.
146 * \param enable_accum Add an accum buffer to the configs
147 * \param color_depth_match Whether the color depth must match the zs depth
148 * This forces 32-bit color to have 24-bit depth, and
149 * 16-bit color to have 16-bit depth.
152 * Pointer to any array of pointers to the \c __DRIconfig structures created
153 * for the specified formats. If there is an error, \c NULL is returned.
154 * Currently the only cause of failure is a bad parameter (i.e., unsupported
158 driCreateConfigs(mesa_format format
,
159 const uint8_t * depth_bits
, const uint8_t * stencil_bits
,
160 unsigned num_depth_stencil_bits
,
161 const GLenum
* db_modes
, unsigned num_db_modes
,
162 const uint8_t * msaa_samples
, unsigned num_msaa_modes
,
163 GLboolean enable_accum
, GLboolean color_depth_match
)
165 static const uint32_t masks_table
[][4] = {
166 /* MESA_FORMAT_B5G6R5_UNORM */
167 { 0x0000F800, 0x000007E0, 0x0000001F, 0x00000000 },
168 /* MESA_FORMAT_B8G8R8X8_UNORM */
169 { 0x00FF0000, 0x0000FF00, 0x000000FF, 0x00000000 },
170 /* MESA_FORMAT_B8G8R8A8_UNORM */
171 { 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000 },
172 /* MESA_FORMAT_B10G10R10X2_UNORM */
173 { 0x3FF00000, 0x000FFC00, 0x000003FF, 0x00000000 },
174 /* MESA_FORMAT_B10G10R10A2_UNORM */
175 { 0x3FF00000, 0x000FFC00, 0x000003FF, 0xC0000000 },
176 /* MESA_FORMAT_R8G8B8A8_UNORM */
177 { 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000 },
178 /* MESA_FORMAT_R8G8B8X8_UNORM */
179 { 0x000000FF, 0x0000FF00, 0x00FF0000, 0x00000000 },
180 /* MESA_FORMAT_R10G10B10X2_UNORM */
181 { 0x000003FF, 0x000FFC00, 0x3FF00000, 0x00000000 },
182 /* MESA_FORMAT_R10G10B10A2_UNORM */
183 { 0x000003FF, 0x000FFC00, 0x3FF00000, 0xC0000000 },
186 const uint32_t * masks
;
187 __DRIconfig
**configs
, **c
;
188 struct gl_config
*modes
;
191 unsigned num_accum_bits
= (enable_accum
) ? 2 : 1;
199 case MESA_FORMAT_B5G6R5_UNORM
:
200 masks
= masks_table
[0];
202 case MESA_FORMAT_B8G8R8X8_UNORM
:
203 case MESA_FORMAT_B8G8R8X8_SRGB
:
204 masks
= masks_table
[1];
206 case MESA_FORMAT_B8G8R8A8_UNORM
:
207 case MESA_FORMAT_B8G8R8A8_SRGB
:
208 masks
= masks_table
[2];
210 case MESA_FORMAT_R8G8B8A8_UNORM
:
211 masks
= masks_table
[5];
213 case MESA_FORMAT_R8G8B8X8_UNORM
:
214 masks
= masks_table
[6];
216 case MESA_FORMAT_B10G10R10X2_UNORM
:
217 masks
= masks_table
[3];
219 case MESA_FORMAT_B10G10R10A2_UNORM
:
220 masks
= masks_table
[4];
222 case MESA_FORMAT_R10G10B10X2_UNORM
:
223 masks
= masks_table
[7];
225 case MESA_FORMAT_R10G10B10A2_UNORM
:
226 masks
= masks_table
[8];
229 fprintf(stderr
, "[%s:%u] Unknown framebuffer type %s (%d).\n",
231 _mesa_get_format_name(format
), format
);
235 red_bits
= _mesa_get_format_bits(format
, GL_RED_BITS
);
236 green_bits
= _mesa_get_format_bits(format
, GL_GREEN_BITS
);
237 blue_bits
= _mesa_get_format_bits(format
, GL_BLUE_BITS
);
238 alpha_bits
= _mesa_get_format_bits(format
, GL_ALPHA_BITS
);
239 is_srgb
= _mesa_get_format_color_encoding(format
) == GL_SRGB
;
241 num_modes
= num_depth_stencil_bits
* num_db_modes
* num_accum_bits
* num_msaa_modes
;
242 configs
= calloc(num_modes
+ 1, sizeof *configs
);
247 for ( k
= 0 ; k
< num_depth_stencil_bits
; k
++ ) {
248 for ( i
= 0 ; i
< num_db_modes
; i
++ ) {
249 for ( h
= 0 ; h
< num_msaa_modes
; h
++ ) {
250 for ( j
= 0 ; j
< num_accum_bits
; j
++ ) {
251 if (color_depth_match
&&
252 (depth_bits
[k
] || stencil_bits
[k
])) {
253 /* Depth can really only be 0, 16, 24, or 32. A 32-bit
254 * color format still matches 24-bit depth, as there
255 * is an implicit 8-bit stencil. So really we just
256 * need to make sure that color/depth are both 16 or
259 if ((depth_bits
[k
] + stencil_bits
[k
] == 16) !=
260 (red_bits
+ green_bits
+ blue_bits
+ alpha_bits
== 16))
264 *c
= malloc (sizeof **c
);
265 modes
= &(*c
)->modes
;
268 memset(modes
, 0, sizeof *modes
);
269 modes
->redBits
= red_bits
;
270 modes
->greenBits
= green_bits
;
271 modes
->blueBits
= blue_bits
;
272 modes
->alphaBits
= alpha_bits
;
273 modes
->redMask
= masks
[0];
274 modes
->greenMask
= masks
[1];
275 modes
->blueMask
= masks
[2];
276 modes
->alphaMask
= masks
[3];
277 modes
->rgbBits
= modes
->redBits
+ modes
->greenBits
278 + modes
->blueBits
+ modes
->alphaBits
;
280 modes
->accumRedBits
= 16 * j
;
281 modes
->accumGreenBits
= 16 * j
;
282 modes
->accumBlueBits
= 16 * j
;
283 modes
->accumAlphaBits
= (masks
[3] != 0) ? 16 * j
: 0;
284 modes
->visualRating
= (j
== 0) ? GLX_NONE
: GLX_SLOW_CONFIG
;
286 modes
->stencilBits
= stencil_bits
[k
];
287 modes
->depthBits
= depth_bits
[k
];
289 modes
->transparentPixel
= GLX_NONE
;
290 modes
->transparentRed
= GLX_DONT_CARE
;
291 modes
->transparentGreen
= GLX_DONT_CARE
;
292 modes
->transparentBlue
= GLX_DONT_CARE
;
293 modes
->transparentAlpha
= GLX_DONT_CARE
;
294 modes
->transparentIndex
= GLX_DONT_CARE
;
295 modes
->rgbMode
= GL_TRUE
;
297 if (db_modes
[i
] == __DRI_ATTRIB_SWAP_NONE
) {
298 modes
->doubleBufferMode
= GL_FALSE
;
299 modes
->swapMethod
= __DRI_ATTRIB_SWAP_UNDEFINED
;
302 modes
->doubleBufferMode
= GL_TRUE
;
303 modes
->swapMethod
= db_modes
[i
];
306 modes
->samples
= msaa_samples
[h
];
307 modes
->sampleBuffers
= modes
->samples
? 1 : 0;
310 modes
->haveAccumBuffer
= ((modes
->accumRedBits
+
311 modes
->accumGreenBits
+
312 modes
->accumBlueBits
+
313 modes
->accumAlphaBits
) > 0);
314 modes
->haveDepthBuffer
= (modes
->depthBits
> 0);
315 modes
->haveStencilBuffer
= (modes
->stencilBits
> 0);
317 modes
->bindToTextureRgb
= GL_TRUE
;
318 modes
->bindToTextureRgba
= GL_TRUE
;
319 modes
->bindToMipmapTexture
= GL_FALSE
;
320 modes
->bindToTextureTargets
=
321 __DRI_ATTRIB_TEXTURE_1D_BIT
|
322 __DRI_ATTRIB_TEXTURE_2D_BIT
|
323 __DRI_ATTRIB_TEXTURE_RECTANGLE_BIT
;
325 modes
->yInverted
= GL_TRUE
;
326 modes
->sRGBCapable
= is_srgb
;
336 __DRIconfig
**driConcatConfigs(__DRIconfig
**a
,
342 if (a
== NULL
|| a
[0] == NULL
)
344 else if (b
== NULL
|| b
[0] == NULL
)
354 all
= malloc((i
+ j
+ 1) * sizeof *all
);
356 for (i
= 0; a
[i
] != NULL
; i
++)
358 for (j
= 0; b
[j
] != NULL
; j
++)
368 #define __ATTRIB(attrib, field) \
369 { attrib, offsetof(struct gl_config, field) }
371 static const struct { unsigned int attrib
, offset
; } attribMap
[] = {
372 __ATTRIB(__DRI_ATTRIB_BUFFER_SIZE
, rgbBits
),
373 __ATTRIB(__DRI_ATTRIB_LEVEL
, level
),
374 __ATTRIB(__DRI_ATTRIB_RED_SIZE
, redBits
),
375 __ATTRIB(__DRI_ATTRIB_GREEN_SIZE
, greenBits
),
376 __ATTRIB(__DRI_ATTRIB_BLUE_SIZE
, blueBits
),
377 __ATTRIB(__DRI_ATTRIB_ALPHA_SIZE
, alphaBits
),
378 __ATTRIB(__DRI_ATTRIB_DEPTH_SIZE
, depthBits
),
379 __ATTRIB(__DRI_ATTRIB_STENCIL_SIZE
, stencilBits
),
380 __ATTRIB(__DRI_ATTRIB_ACCUM_RED_SIZE
, accumRedBits
),
381 __ATTRIB(__DRI_ATTRIB_ACCUM_GREEN_SIZE
, accumGreenBits
),
382 __ATTRIB(__DRI_ATTRIB_ACCUM_BLUE_SIZE
, accumBlueBits
),
383 __ATTRIB(__DRI_ATTRIB_ACCUM_ALPHA_SIZE
, accumAlphaBits
),
384 __ATTRIB(__DRI_ATTRIB_SAMPLE_BUFFERS
, sampleBuffers
),
385 __ATTRIB(__DRI_ATTRIB_SAMPLES
, samples
),
386 __ATTRIB(__DRI_ATTRIB_DOUBLE_BUFFER
, doubleBufferMode
),
387 __ATTRIB(__DRI_ATTRIB_STEREO
, stereoMode
),
388 __ATTRIB(__DRI_ATTRIB_AUX_BUFFERS
, numAuxBuffers
),
389 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_TYPE
, transparentPixel
),
390 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_INDEX_VALUE
, transparentPixel
),
391 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_RED_VALUE
, transparentRed
),
392 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_GREEN_VALUE
, transparentGreen
),
393 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_BLUE_VALUE
, transparentBlue
),
394 __ATTRIB(__DRI_ATTRIB_TRANSPARENT_ALPHA_VALUE
, transparentAlpha
),
395 __ATTRIB(__DRI_ATTRIB_RED_MASK
, redMask
),
396 __ATTRIB(__DRI_ATTRIB_GREEN_MASK
, greenMask
),
397 __ATTRIB(__DRI_ATTRIB_BLUE_MASK
, blueMask
),
398 __ATTRIB(__DRI_ATTRIB_ALPHA_MASK
, alphaMask
),
399 __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_WIDTH
, maxPbufferWidth
),
400 __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_HEIGHT
, maxPbufferHeight
),
401 __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_PIXELS
, maxPbufferPixels
),
402 __ATTRIB(__DRI_ATTRIB_OPTIMAL_PBUFFER_WIDTH
, optimalPbufferWidth
),
403 __ATTRIB(__DRI_ATTRIB_OPTIMAL_PBUFFER_HEIGHT
, optimalPbufferHeight
),
404 __ATTRIB(__DRI_ATTRIB_SWAP_METHOD
, swapMethod
),
405 __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGB
, bindToTextureRgb
),
406 __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGBA
, bindToTextureRgba
),
407 __ATTRIB(__DRI_ATTRIB_BIND_TO_MIPMAP_TEXTURE
, bindToMipmapTexture
),
408 __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_TARGETS
, bindToTextureTargets
),
409 __ATTRIB(__DRI_ATTRIB_YINVERTED
, yInverted
),
410 __ATTRIB(__DRI_ATTRIB_FRAMEBUFFER_SRGB_CAPABLE
, sRGBCapable
),
412 /* The struct field doesn't matter here, these are handled by the
413 * switch in driGetConfigAttribIndex. We need them in the array
414 * so the iterator includes them though.*/
415 __ATTRIB(__DRI_ATTRIB_RENDER_TYPE
, level
),
416 __ATTRIB(__DRI_ATTRIB_CONFIG_CAVEAT
, level
),
421 * Return the value of a configuration attribute. The attribute is
422 * indicated by the index.
425 driGetConfigAttribIndex(const __DRIconfig
*config
,
426 unsigned int index
, unsigned int *value
)
428 switch (attribMap
[index
].attrib
) {
429 case __DRI_ATTRIB_RENDER_TYPE
:
430 /* no support for color index mode */
431 *value
= __DRI_ATTRIB_RGBA_BIT
;
433 case __DRI_ATTRIB_CONFIG_CAVEAT
:
434 if (config
->modes
.visualRating
== GLX_NON_CONFORMANT_CONFIG
)
435 *value
= __DRI_ATTRIB_NON_CONFORMANT_CONFIG
;
436 else if (config
->modes
.visualRating
== GLX_SLOW_CONFIG
)
437 *value
= __DRI_ATTRIB_SLOW_BIT
;
442 /* any other int-sized field */
443 *value
= *(unsigned int *)
444 ((char *) &config
->modes
+ attribMap
[index
].offset
);
454 * Get the value of a configuration attribute.
455 * \param attrib the attribute (one of the _DRI_ATTRIB_x tokens)
456 * \param value returns the attribute's value
457 * \return 1 for success, 0 for failure
460 driGetConfigAttrib(const __DRIconfig
*config
,
461 unsigned int attrib
, unsigned int *value
)
465 for (i
= 0; i
< ARRAY_SIZE(attribMap
); i
++)
466 if (attribMap
[i
].attrib
== attrib
)
467 return driGetConfigAttribIndex(config
, i
, value
);
474 * Get a configuration attribute name and value, given an index.
475 * \param index which field of the __DRIconfig to query
476 * \param attrib returns the attribute name (one of the _DRI_ATTRIB_x tokens)
477 * \param value returns the attribute's value
478 * \return 1 for success, 0 for failure
481 driIndexConfigAttrib(const __DRIconfig
*config
, int index
,
482 unsigned int *attrib
, unsigned int *value
)
484 if (index
>= 0 && index
< ARRAY_SIZE(attribMap
)) {
485 *attrib
= attribMap
[index
].attrib
;
486 return driGetConfigAttribIndex(config
, index
, value
);
493 * Implement queries for values that are common across all Mesa drivers
495 * Currently only the following queries are supported by this function:
497 * - \c __DRI2_RENDERER_VERSION
498 * - \c __DRI2_RENDERER_PREFERRED_PROFILE
499 * - \c __DRI2_RENDERER_OPENGL_CORE_PROFILE_VERSION
500 * - \c __DRI2_RENDERER_OPENGL_COMPATIBLITY_PROFILE_VERSION
501 * - \c __DRI2_RENDERER_ES_PROFILE_VERSION
502 * - \c __DRI2_RENDERER_ES2_PROFILE_VERSION
505 * Zero if a recognized value of \c param is supplied, -1 otherwise.
508 driQueryRendererIntegerCommon(__DRIscreen
*psp
, int param
, unsigned int *value
)
511 case __DRI2_RENDERER_VERSION
: {
512 static const char *const ver
= PACKAGE_VERSION
;
516 v
[0] = strtol(ver
, &endptr
, 10);
517 assert(endptr
[0] == '.');
518 if (endptr
[0] != '.')
521 v
[1] = strtol(endptr
+ 1, &endptr
, 10);
522 assert(endptr
[0] == '.');
523 if (endptr
[0] != '.')
526 v
[2] = strtol(endptr
+ 1, &endptr
, 10);
533 case __DRI2_RENDERER_PREFERRED_PROFILE
:
534 value
[0] = (psp
->max_gl_core_version
!= 0)
535 ? (1U << __DRI_API_OPENGL_CORE
) : (1U << __DRI_API_OPENGL
);
537 case __DRI2_RENDERER_OPENGL_CORE_PROFILE_VERSION
:
538 value
[0] = psp
->max_gl_core_version
/ 10;
539 value
[1] = psp
->max_gl_core_version
% 10;
541 case __DRI2_RENDERER_OPENGL_COMPATIBILITY_PROFILE_VERSION
:
542 value
[0] = psp
->max_gl_compat_version
/ 10;
543 value
[1] = psp
->max_gl_compat_version
% 10;
545 case __DRI2_RENDERER_OPENGL_ES_PROFILE_VERSION
:
546 value
[0] = psp
->max_gl_es1_version
/ 10;
547 value
[1] = psp
->max_gl_es1_version
% 10;
549 case __DRI2_RENDERER_OPENGL_ES2_PROFILE_VERSION
:
550 value
[0] = psp
->max_gl_es2_version
/ 10;
551 value
[1] = psp
->max_gl_es2_version
% 10;