backend/drm: fix missing wlr_drm_format.cap

This caused issues with wlr_drm_format_dup.
This commit is contained in:
Simon Ser 2020-12-08 23:32:04 +01:00
parent eb5886ddbe
commit 06ab41a160
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}