backend/drm: setup plane color pipeline

This commit is contained in:
Simon Ser 2026-06-04 17:00:33 +02:00
parent def08f373a
commit 9ba7d8c276
4 changed files with 294 additions and 0 deletions

View file

@ -79,6 +79,12 @@ static bool legacy_crtc_test(const struct wlr_drm_connector_state *state,
}
}
if (state->base->committed & WLR_OUTPUT_STATE_PRE_COLOR_TRANSFORM) {
wlr_drm_conn_log(conn, WLR_DEBUG,
"Pre-blending color pipeline not supported for legacy KMS API");
return false;
}
return true;
}