[Mesa-dev] [PATCH 17/18] egl/wayland: Add 10bpc BGR configs
Daniel Stone
daniels at collabora.com
Thu Feb 8 13:55:41 UTC 2018
Add support for XBGR2101010 and ABGR2101010.
Signed-off-by: Daniel Stone <daniels at collabora.com>
Cc: Ilia Mirkin <imirkin at alum.mit.edu>
---
src/egl/drivers/dri2/platform_wayland.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c
index 7ab085ccf44..b1aa51cd2f4 100644
--- a/src/egl/drivers/dri2/platform_wayland.c
+++ b/src/egl/drivers/dri2/platform_wayland.c
@@ -77,6 +77,18 @@ static const struct dri2_wl_visual {
__DRI_IMAGE_FORMAT_ARGB2101010, 32,
{ 0x3ff00000, 0x000ffc00, 0x000003ff, 0xc0000000 }
},
+ {
+ "XBGR2101010",
+ WL_DRM_FORMAT_XBGR2101010, WL_SHM_FORMAT_XBGR2101010,
+ __DRI_IMAGE_FORMAT_XBGR2101010, 32,
+ { 0x000003ff, 0x000ffc00, 0x3ff00000, 0x00000000 }
+ },
+ {
+ "ABGR2101010",
+ WL_DRM_FORMAT_ABGR2101010, WL_SHM_FORMAT_ABGR2101010,
+ __DRI_IMAGE_FORMAT_ABGR2101010, 32,
+ { 0x000003ff, 0x000ffc00, 0x3ff00000, 0xc0000000 }
+ },
{
"XRGB8888",
WL_DRM_FORMAT_XRGB8888, WL_SHM_FORMAT_XRGB8888,
--
2.14.3
More information about the mesa-dev
mailing list