diff options
author | emersion <contact@emersion.fr> | 2018-10-01 11:07:58 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-10-04 21:56:38 +0200 |
commit | 26b9d6dbb1f060405c02b6b66527b0272f79d495 (patch) | |
tree | eafc3eaae5736ed8ae325f51c12a1fb60b70a94f /backend/headless | |
parent | 78389fe72225f9baf7def744825323f54ac4ee8e (diff) |
output: send present event from all backends
Diffstat (limited to 'backend/headless')
-rw-r--r-- | backend/headless/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 143900d4..ad0050d8 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -67,6 +67,7 @@ static bool output_make_current(struct wlr_output *wlr_output, int *buffer_age) static bool output_swap_buffers(struct wlr_output *wlr_output, pixman_region32_t *damage) { + wlr_output_send_present(wlr_output, NULL, 0, 0); return true; // No-op } |