commit 31e44c01b454ca2938e856c0f07dce2f9a665be3
parent 974d51058532b3076ec92b8c74e8d0630a9cdbd3
Author: Tony Crisci <tony@dubstepdish.com>
Date: Fri, 1 Dec 2017 07:15:34 -0500
send callbacks with send_frame_done
Diffstat:
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
@@ -72,12 +72,7 @@ static void output_frame_view(swayc_t *view, void *data) {
struct timespec now;
clock_gettime(CLOCK_MONOTONIC, &now);
- struct wlr_frame_callback *cb, *cnext;
- wl_list_for_each_safe(cb, cnext,
- &surface->current->frame_callback_list, link) {
- wl_callback_send_done(cb->resource, timespec_to_msec(&now));
- wl_resource_destroy(cb->resource);
- }
+ wlr_surface_send_frame_done(surface, &now);
}
static void output_frame_notify(struct wl_listener *listener, void *data) {