aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index b1e3464a..0cc08525 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -378,14 +378,15 @@ static void damage_handle_frame(struct wl_listener *listener, void *data) {
378 struct timespec now; 378 struct timespec now;
379 clock_gettime(CLOCK_MONOTONIC, &now); 379 clock_gettime(CLOCK_MONOTONIC, &now);
380 380
381 bool needs_swap; 381 bool needs_frame;
382 pixman_region32_t damage; 382 pixman_region32_t damage;
383 pixman_region32_init(&damage); 383 pixman_region32_init(&damage);
384 if (!wlr_output_damage_make_current(output->damage, &needs_swap, &damage)) { 384 if (!wlr_output_damage_attach_render(output->damage,
385 &needs_frame, &damage)) {
385 return; 386 return;
386 } 387 }
387 388
388 if (needs_swap) { 389 if (needs_frame) {
389 output_render(output, &now, &damage); 390 output_render(output, &now, &damage);
390 } 391 }
391 392