diff options
author | Scott Anderson <scott@anderso.nz> | 2020-02-08 19:09:41 +1300 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-02-08 11:38:44 +0100 |
commit | 2fea2fced8350ce52b3ea9c2d3f62797f7e61b56 (patch) | |
tree | 9a98e0c8c551fd07ed9ccc1335c6c9982a16ad24 /examples/rotation.c | |
parent | 4b051aa926aa37b99f586b47caab1dcdfddfee65 (diff) |
examples: Fix compositor-examples
Due to the way the wlr_output API was changed, these examples would
never get a frame event to start the rendering loop. We now commit the
outputs to start it.
Diffstat (limited to 'examples/rotation.c')
-rw-r--r-- | examples/rotation.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/rotation.c b/examples/rotation.c index 3700351a..e76cc2a4 100644 --- a/examples/rotation.c +++ b/examples/rotation.c @@ -123,6 +123,8 @@ static void new_output_notify(struct wl_listener *listener, void *data) { wl_signal_add(&output->events.destroy, &sample_output->destroy); sample_output->destroy.notify = output_remove_notify; wl_list_insert(&sample->outputs, &sample_output->link); + + wlr_output_commit(output); } static void keyboard_key_notify(struct wl_listener *listener, void *data) { |