From b51a6e950fdc7a448be4efce12488e5641eef75d Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Sat, 30 Sep 2023 13:39:36 +0200 Subject: [PATCH] output: wlr_scene_output_commit NULL options --- output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.c b/output.c index 8bf8b59..733e194 100644 --- a/output.c +++ b/output.c @@ -169,7 +169,7 @@ handle_output_frame(struct wl_listener *listener, void *data) return; } - wlr_scene_output_commit(output->scene_output); + wlr_scene_output_commit(output->scene_output, NULL); struct timespec now = {0}; clock_gettime(CLOCK_MONOTONIC, &now);