diff options
author | Hal Gentz <[email protected]> | 2019-10-10 18:35:50 -0600 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-10-11 21:57:21 +0000 |
commit | 90a19074b4e1d4d8f8ababaade8170c05aeecffe (patch) | |
tree | 78803ff106d46c0fd627e643887c1011ec57b721 /include/GL | |
parent | 173bc9d6842efdec54ea3fd415a6946dcee7b02a (diff) |
egl: Fixes transparency with EGL and X11.
This commit does this by allowing both RGB and RGBA visuals to match with
EGL configs. We also expose the `EGL_MESA_config_select_group` egl
extension, which is similar to GLX's visual select group extension, to
allow the RGBA visuals to get less priority.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=67676
Fixes: 049f343e8ac "egl: Allow 24-bit visuals for 32-bit RGBA8888 configs"
Cc: [email protected]
Reviewed-by: Adam Jackson <[email protected]>
Signed-off-by: Hal Gentz <[email protected]>
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/internal/dri_interface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index f19ec5168a5..718b7dde87c 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -813,7 +813,8 @@ struct __DRIuseInvalidateExtensionRec { #define __DRI_ATTRIB_GREEN_SHIFT 51 #define __DRI_ATTRIB_BLUE_SHIFT 52 #define __DRI_ATTRIB_ALPHA_SHIFT 53 -#define __DRI_ATTRIB_MAX 54 +#define __DRI_ATTRIB_CONFIG_SELECT_GROUP 54 +#define __DRI_ATTRIB_MAX 55 /* __DRI_ATTRIB_RENDER_TYPE */ #define __DRI_ATTRIB_RGBA_BIT 0x01 |