xserver: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Sep 23 13:26:23 UTC 2019


 hw/xwayland/xwayland-glamor-gbm.c |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit edf964434eac10ffbe27cc883e3ab95505669aee
Author: Jonas Ådahl <jadahl at gmail.com>
Date:   Fri Sep 13 17:11:27 2019 +0200

    xwayland/glamor-gbm: Handle DRM_FORMAT_MOD_INVALID gracefully
    
    The compositor may send DRM_FORMAT_MOD_INVALID instead of a list of
    modifiers for various reasons. Handle this gracefully by ignoring it.
    
    Without this, if a compositor would send DRM_FORMAT_MOD_INVALID, it'd
    result in empty windows provided by Xwayland.
    
    Signed-off-by: Jonas Ådahl <jadahl at gmail.com>
    Reviewed-by: Olivier Fourdan <ofourdan at redhat.com>
    Reviewed-by: Michel Dänzer <mdaenzer at redhat.com>

diff --git a/hw/xwayland/xwayland-glamor-gbm.c b/hw/xwayland/xwayland-glamor-gbm.c
index c13515c3c..e2a240c23 100644
--- a/hw/xwayland/xwayland-glamor-gbm.c
+++ b/hw/xwayland/xwayland-glamor-gbm.c
@@ -789,6 +789,10 @@ xwl_dmabuf_handle_modifier(void *data, struct zwp_linux_dmabuf_v1 *dmabuf,
     struct xwl_format *xwl_format = NULL;
     int i;
 
+    if (modifier_hi == (DRM_FORMAT_MOD_INVALID >> 32) &&
+        modifier_lo == (DRM_FORMAT_MOD_INVALID & 0xffffffff))
+        return;
+
     for (i = 0; i < xwl_screen->num_formats; i++) {
         if (xwl_screen->formats[i].format == format) {
             xwl_format = &xwl_screen->formats[i];


More information about the xorg-commit mailing list