diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 70a1edde..9d177810 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -924,6 +924,9 @@ static bool drm_connector_attach_buffer(struct wlr_output *output, return false; } + if (attribs.flags != 0) { + return false; + } if (attribs.width != output->width || attribs.height != output->height) { return false; }