mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
output: add wlr_output_state_set_layers()
This commit is contained in:
parent
73ca1ea48a
commit
670915eeea
4 changed files with 18 additions and 8 deletions
|
|
@ -82,11 +82,9 @@ static void output_handle_frame(struct wl_listener *listener, void *data) {
|
|||
};
|
||||
}
|
||||
|
||||
struct wlr_output_state output_state = {
|
||||
.committed = WLR_OUTPUT_STATE_LAYERS,
|
||||
.layers = layers_arr.data,
|
||||
.layers_len = layers_arr.size / sizeof(struct wlr_output_layer_state),
|
||||
};
|
||||
struct wlr_output_state output_state = {0};
|
||||
wlr_output_state_set_layers(&output_state, layers_arr.data,
|
||||
layers_arr.size / sizeof(struct wlr_output_layer_state));
|
||||
|
||||
if (!wlr_output_test_state(output->wlr_output, &output_state)) {
|
||||
wlr_log(WLR_ERROR, "wlr_output_test() failed");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue