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 /examples/scene-graph.c | |
parent | f4eaab12a056e339b1b7548f211bb463ad064392 (diff) |
scene_output: optionally record and report timings
Diffstat (limited to 'examples/scene-graph.c')
-rw-r--r-- | examples/scene-graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/scene-graph.c b/examples/scene-graph.c index 3cf150d0..7b7e14d6 100644 --- a/examples/scene-graph.c +++ b/examples/scene-graph.c @@ -57,7 +57,7 @@ struct output { static void output_handle_frame(struct wl_listener *listener, void *data) { struct output *output = wl_container_of(listener, output, frame); - if (!wlr_scene_output_commit(output->scene_output)) { + if (!wlr_scene_output_commit(output->scene_output, NULL)) { return; } |