diff options
author | Simon Ser <contact@emersion.fr> | 2019-04-23 20:22:42 +0300 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-04-23 14:34:30 -0600 |
commit | 20690346c7a9f75cfb181cb613b8f006e6ce3e14 (patch) | |
tree | 57e73e611caf006c59948c1a8235394b198c2f16 /backend/drm/drm.c | |
parent | 5e6766a165bd4bc71f1dc24c4348f7be0f020ddd (diff) |
output: rename needs_commit to needs_frame
This new name makes more sense, since it is a request from the backend to get
a new frame. In the future a commit may not convey a new frame.
Diffstat (limited to 'backend/drm/drm.c')
-rw-r--r-- | backend/drm/drm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c index f97166f1..17a2e48d 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -338,7 +338,7 @@ bool set_drm_connector_gamma(struct wlr_output *output, size_t size, bool ok = drm->iface->crtc_set_gamma(drm, conn->crtc, size, _r, _g, _b); if (ok) { - wlr_output_update_needs_commit(output); + wlr_output_update_needs_frame(output); free(conn->crtc->gamma_table); conn->crtc->gamma_table = gamma_table; @@ -677,7 +677,7 @@ static bool drm_connector_set_cursor(struct wlr_output *output, return false; } - wlr_output_update_needs_commit(output); + wlr_output_update_needs_frame(output); } if (!update_texture) { @@ -737,7 +737,7 @@ static bool drm_connector_set_cursor(struct wlr_output *output, } bool ok = drm->iface->crtc_set_cursor(drm, crtc, bo); if (ok) { - wlr_output_update_needs_commit(output); + wlr_output_update_needs_frame(output); } return ok; } @@ -774,7 +774,7 @@ static bool drm_connector_move_cursor(struct wlr_output *output, bool ok = drm->iface->crtc_move_cursor(drm, conn->crtc, box.x, box.y); if (ok) { - wlr_output_update_needs_commit(output); + wlr_output_update_needs_frame(output); } return ok; } @@ -1435,7 +1435,7 @@ static void drm_connector_cleanup(struct wlr_drm_connector *conn) { wl_event_source_remove(conn->output.idle_frame); conn->output.idle_frame = NULL; } - conn->output.needs_commit = false; + conn->output.needs_frame = false; conn->output.frame_pending = false; /* Fallthrough */ |