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/x11 | |
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/x11')
-rw-r--r-- | backend/x11/backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/x11/backend.c b/backend/x11/backend.c index ddd8ab77..6bece36d 100644 --- a/backend/x11/backend.c +++ b/backend/x11/backend.c @@ -46,7 +46,7 @@ static void handle_x11_event(struct wlr_x11_backend *x11, struct wlr_x11_output *output = get_x11_output_from_window_id(x11, ev->window); if (output != NULL) { - wlr_output_update_needs_commit(&output->wlr_output); + wlr_output_update_needs_frame(&output->wlr_output); } break; } |