From a654ac1bd626e13917568acaebb6ecdb04c77596 Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 23 Oct 2018 23:38:57 +0200 Subject: Implement the presentation-time protocol --- sway/tree/output.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sway/tree/output.c') diff --git a/sway/tree/output.c b/sway/tree/output.c index 04219b5f..e5794b8a 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -103,6 +103,7 @@ void output_enable(struct sway_output *output, struct output_config *oc) { wl_signal_add(&wlr_output->events.mode, &output->mode); wl_signal_add(&wlr_output->events.transform, &output->transform); wl_signal_add(&wlr_output->events.scale, &output->scale); + wl_signal_add(&wlr_output->events.present, &output->present); wl_signal_add(&output->damage->events.frame, &output->damage_frame); wl_signal_add(&output->damage->events.destroy, &output->damage_destroy); @@ -214,6 +215,7 @@ void output_disable(struct sway_output *output) { wl_list_remove(&output->mode.link); wl_list_remove(&output->transform.link); wl_list_remove(&output->scale.link); + wl_list_remove(&output->present.link); wl_list_remove(&output->damage_destroy.link); wl_list_remove(&output->damage_frame.link); -- cgit v1.2.3-54-g00ecf