diff options
author | Rose Hudson <rose@krx.sh> | 2023-06-08 10:42:25 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-07-10 09:57:02 +0000 |
commit | 214df8eda07d18b032abfcf525c8344e077c0c7e (patch) | |
tree | 29c2d58df0474fc47e5bf4d7eae0df0b1961d068 /tinywl | |
parent | f4eaab12a056e339b1b7548f211bb463ad064392 (diff) |
scene_output: optionally record and report timings
Diffstat (limited to 'tinywl')
-rw-r--r-- | tinywl/tinywl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinywl/tinywl.c b/tinywl/tinywl.c index 8324c500..61c08928 100644 --- a/tinywl/tinywl.c +++ b/tinywl/tinywl.c @@ -559,7 +559,7 @@ static void output_frame(struct wl_listener *listener, void *data) { scene, output->wlr_output); /* Render the scene if needed and commit the output */ - wlr_scene_output_commit(scene_output); + wlr_scene_output_commit(scene_output, NULL); struct timespec now; clock_gettime(CLOCK_MONOTONIC, &now); |