From cbe25aaa16d9ab13be4acd621876af44a018a9cf Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Sat, 30 Sep 2023 13:39:36 +0200 Subject: [PATCH] chore: 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 c327212..f75c11b 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);