From 06ab41a160ddac970657254ded4258039fe9d317 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 8 Dec 2020 23:32:04 +0100 Subject: [PATCH] backend/drm: fix missing wlr_drm_format.cap This caused issues with wlr_drm_format_dup. --- backend/drm/renderer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/drm/renderer.c b/backend/drm/renderer.c index 408effd8..d8fef035 100644 --- a/backend/drm/renderer.c +++ b/backend/drm/renderer.c @@ -100,6 +100,7 @@ static bool init_drm_surface(struct wlr_drm_surface *surf, } format_linear->format = drm_format->format; format_linear->len = 1; + format_linear->cap = 1; format_linear->modifiers[0] = DRM_FORMAT_MOD_LINEAR; drm_format = format_linear; }