mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
backend/drm: move drm_connector_set_pending_fb up
This will be used in drm_connector_test shortly.
This commit is contained in:
parent
f55b43ddd6
commit
758f117442
1 changed files with 30 additions and 30 deletions
|
@ -414,6 +414,36 @@ static bool test_buffer(struct wlr_drm_connector *conn,
|
||||||
return drm_crtc_commit(conn, &conn->output.pending, DRM_MODE_ATOMIC_TEST_ONLY);
|
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,
|
||||||
|
const struct wlr_output_state *state) {
|
||||||
|
struct wlr_drm_backend *drm = conn->backend;
|
||||||
|
|
||||||
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
||||||
|
if (!crtc) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
struct wlr_drm_plane *plane = crtc->primary;
|
||||||
|
|
||||||
|
assert(state->committed & WLR_OUTPUT_STATE_BUFFER);
|
||||||
|
switch (state->buffer_type) {
|
||||||
|
case WLR_OUTPUT_STATE_BUFFER_RENDER:
|
||||||
|
if (!drm_plane_lock_surface(plane, drm)) {
|
||||||
|
wlr_drm_conn_log(conn, WLR_ERROR, "drm_plane_lock_surface failed");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case WLR_OUTPUT_STATE_BUFFER_SCANOUT:;
|
||||||
|
if (!drm_fb_import(&plane->pending_fb, drm, state->buffer,
|
||||||
|
&crtc->primary->formats)) {
|
||||||
|
wlr_log(WLR_ERROR, "Failed to import buffer");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
static bool drm_connector_alloc_crtc(struct wlr_drm_connector *conn);
|
static bool drm_connector_alloc_crtc(struct wlr_drm_connector *conn);
|
||||||
|
|
||||||
static bool drm_connector_test(struct wlr_output *output) {
|
static bool drm_connector_test(struct wlr_output *output) {
|
||||||
|
@ -447,36 +477,6 @@ static bool drm_connector_test(struct wlr_output *output) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool drm_connector_set_pending_fb(struct wlr_drm_connector *conn,
|
|
||||||
const struct wlr_output_state *state) {
|
|
||||||
struct wlr_drm_backend *drm = conn->backend;
|
|
||||||
|
|
||||||
struct wlr_drm_crtc *crtc = conn->crtc;
|
|
||||||
if (!crtc) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
struct wlr_drm_plane *plane = crtc->primary;
|
|
||||||
|
|
||||||
assert(state->committed & WLR_OUTPUT_STATE_BUFFER);
|
|
||||||
switch (state->buffer_type) {
|
|
||||||
case WLR_OUTPUT_STATE_BUFFER_RENDER:
|
|
||||||
if (!drm_plane_lock_surface(plane, drm)) {
|
|
||||||
wlr_drm_conn_log(conn, WLR_ERROR, "drm_plane_lock_surface failed");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case WLR_OUTPUT_STATE_BUFFER_SCANOUT:;
|
|
||||||
if (!drm_fb_import(&plane->pending_fb, drm, state->buffer,
|
|
||||||
&crtc->primary->formats)) {
|
|
||||||
wlr_log(WLR_ERROR, "Failed to import buffer");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool drm_connector_supports_vrr(struct wlr_drm_connector *conn) {
|
bool drm_connector_supports_vrr(struct wlr_drm_connector *conn) {
|
||||||
struct wlr_drm_backend *drm = conn->backend;
|
struct wlr_drm_backend *drm = conn->backend;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue