mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
glx: Add extension strings for GLX_ARB_create_context and GLX_ARB_create_context_profile
Note that these extensions are not automatically enabled for screens capable of direct-rendering. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
78aa71a3ce
commit
c9d25cf73f
2 changed files with 5 additions and 1 deletions
|
|
@ -71,6 +71,8 @@ struct extension_info
|
|||
|
||||
/* *INDENT-OFF* */
|
||||
static const struct extension_info known_glx_extensions[] = {
|
||||
{ GLX(ARB_create_context), VER(0,0), Y, N, N, N },
|
||||
{ GLX(ARB_create_context_profile), VER(0,0), Y, N, N, N },
|
||||
{ GLX(ARB_get_proc_address), VER(1,4), Y, N, Y, N },
|
||||
{ GLX(ARB_multisample), VER(1,4), Y, Y, N, N },
|
||||
{ GLX(ATI_pixel_format_float), VER(0,0), N, N, N, N },
|
||||
|
|
|
|||
|
|
@ -33,7 +33,9 @@
|
|||
|
||||
enum
|
||||
{
|
||||
ARB_get_proc_address_bit = 0,
|
||||
ARB_create_context_bit = 0,
|
||||
ARB_create_context_profile_bit,
|
||||
ARB_get_proc_address_bit,
|
||||
ARB_multisample_bit,
|
||||
ATI_pixel_format_float_bit,
|
||||
EXT_visual_info_bit,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue