aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-10-23 23:38:57 +0200
committeremersion <contact@emersion.fr>2018-10-23 23:38:57 +0200
commita654ac1bd626e13917568acaebb6ecdb04c77596 (patch)
tree87d9e727e76d7eea9f74ba609f73cf7aa82b9c2f /sway/tree
parent7160b8aae90694e039de8d5a9341d18c89bf3c6d (diff)
Implement the presentation-time protocol
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/output.c2
1 files changed, 2 insertions, 0 deletions
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);