mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
backend/drm: remove test_buffer
Instead, call drm_connector_set_pending_fb.
This commit is contained in:
parent
eca5d2f37f
commit
3345eaca89
1 changed files with 14 additions and 25 deletions
|
@ -387,29 +387,6 @@ static bool drm_crtc_page_flip(struct wlr_drm_connector *conn,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool test_buffer(struct wlr_drm_connector *conn,
|
|
||||||
struct wlr_buffer *wlr_buffer) {
|
|
||||||
struct wlr_drm_backend *drm = conn->backend;
|
|
||||||
|
|
||||||
/* Legacy never gets to have nice things. But I doubt this would ever work,
|
|
||||||
* and there is no reliable way to try, without risking messing up the
|
|
||||||
* modesetting state. */
|
|
||||||
if (drm->iface == &legacy_iface) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct wlr_drm_crtc *crtc = conn->crtc;
|
|
||||||
if (!crtc) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!drm_fb_import(&crtc->primary->pending_fb, drm, wlr_buffer,
|
|
||||||
&crtc->primary->formats)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return drm_crtc_commit(conn, &conn->output.pending, DRM_MODE_ATOMIC_TEST_ONLY);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool drm_connector_set_pending_fb(struct wlr_drm_connector *conn,
|
static bool drm_connector_set_pending_fb(struct wlr_drm_connector *conn,
|
||||||
const struct wlr_output_state *state) {
|
const struct wlr_output_state *state) {
|
||||||
struct wlr_drm_backend *drm = conn->backend;
|
struct wlr_drm_backend *drm = conn->backend;
|
||||||
|
@ -429,9 +406,18 @@ static bool drm_connector_set_pending_fb(struct wlr_drm_connector *conn,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WLR_OUTPUT_STATE_BUFFER_SCANOUT:;
|
case WLR_OUTPUT_STATE_BUFFER_SCANOUT:;
|
||||||
|
/* Legacy never gets to have nice things. But I doubt this would ever work,
|
||||||
|
* and there is no reliable way to try, without risking messing up the
|
||||||
|
* modesetting state. */
|
||||||
|
if (drm->iface == &legacy_iface) {
|
||||||
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
||||||
|
"Cannot use direct scan-out with legacy KMS API");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (!drm_fb_import(&plane->pending_fb, drm, state->buffer,
|
if (!drm_fb_import(&plane->pending_fb, drm, state->buffer,
|
||||||
&crtc->primary->formats)) {
|
&crtc->primary->formats)) {
|
||||||
wlr_log(WLR_ERROR, "Failed to import buffer");
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
||||||
|
"Failed to import buffer for scan-out");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -469,7 +455,10 @@ static bool drm_connector_test(struct wlr_output *output) {
|
||||||
|
|
||||||
if ((output->pending.committed & WLR_OUTPUT_STATE_BUFFER) &&
|
if ((output->pending.committed & WLR_OUTPUT_STATE_BUFFER) &&
|
||||||
output->pending.buffer_type == WLR_OUTPUT_STATE_BUFFER_SCANOUT) {
|
output->pending.buffer_type == WLR_OUTPUT_STATE_BUFFER_SCANOUT) {
|
||||||
if (!test_buffer(conn, output->pending.buffer)) {
|
if (!drm_connector_set_pending_fb(conn, &output->pending)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!drm_crtc_commit(conn, &output->pending, DRM_MODE_ATOMIC_TEST_ONLY)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue