diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-20 17:51:45 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-20 17:51:45 -0400 |
commit | b9d36c8149536cff1aa229f59337dcfa2f70a37b (patch) | |
tree | 1381f243d1bb9df41691e2b92593a8495bb80f37 /example/rotation.c | |
parent | c9d5a0b2fb5686627344922138c3c603cae364bc (diff) |
Add dynamic output resizing for Wayland backend
This allows outputs to:
- Not support modesetting
- Resize themselves
Diffstat (limited to 'example/rotation.c')
-rw-r--r-- | example/rotation.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/example/rotation.c b/example/rotation.c index a1c77013..d7b6b169 100644 --- a/example/rotation.c +++ b/example/rotation.c @@ -197,13 +197,12 @@ int main(int argc, char *argv[]) { wl_list_init(&state.config); parse_args(argc, argv, &state.config); - struct compositor_state compositor = { 0, - .data = &state, - .output_add_cb = handle_output_add, - .output_remove_cb = handle_output_remove, - .output_frame_cb = handle_output_frame, - .keyboard_key_cb = handle_keyboard_key, - }; + struct compositor_state compositor = { 0 }; + compositor.data = &state; + compositor.output_add_cb = handle_output_add; + compositor.output_remove_cb = handle_output_remove; + compositor.output_frame_cb = handle_output_frame; + compositor.keyboard_key_cb = handle_keyboard_key; compositor_init(&compositor); state.renderer = wlr_gles3_renderer_init(); |