diff options
author | Simon Ser <contact@emersion.fr> | 2023-02-21 09:45:05 +0100 |
---|---|---|
committer | Isaac Freund <mail@isaacfreund.com> | 2023-03-28 22:58:29 +0000 |
commit | 89dcecba39d4f49b673f2fa976354c91413a4c3f (patch) | |
tree | 69ef4bcc7146d3c4404006df5952b661bf87ab5a /backend | |
parent | fcc092c2a68c912d8aaf12618fd9afa734ff6170 (diff) |
backend/wayland: only unmap layers when necessary
Diffstat (limited to 'backend')
-rw-r--r-- | backend/wayland/output.c | 45 |
1 files changed, 27 insertions, 18 deletions
diff --git a/backend/wayland/output.c b/backend/wayland/output.c index e74a6ef2..38daade2 100644 --- a/backend/wayland/output.c +++ b/backend/wayland/output.c @@ -347,21 +347,30 @@ static struct wlr_wl_output_layer *get_or_create_output_layer( static bool has_layers_order_changed(struct wlr_wl_output *output, struct wlr_output_layer_state *layers, size_t layers_len) { + // output_basic_check() ensures that layers_len equals the number of + // registered output layers size_t i = 0; struct wlr_output_layer *layer; wl_list_for_each(layer, &output->wlr_output.layers, link) { - if (i >= layers_len) { - return true; - } - + assert(i < layers_len); const struct wlr_output_layer_state *layer_state = &layers[i]; if (layer_state->layer != layer) { return true; } - i++; } - return i != layers_len; + assert(i == layers_len); + return false; +} + +static void output_layer_unmap(struct wlr_wl_output_layer *layer) { + if (!layer->mapped) { + return; + } + + wl_surface_attach(layer->surface, NULL, 0, 0); + wl_surface_commit(layer->surface); + layer->mapped = false; } static bool output_layer_commit(struct wlr_wl_output *output, @@ -371,18 +380,21 @@ static bool output_layer_commit(struct wlr_wl_output *output, wl_subsurface_set_position(layer->subsurface, state->x, state->y); } - struct wlr_wl_buffer *buffer = NULL; - if (state->buffer != NULL) { - buffer = get_or_create_wl_buffer(output->backend, state->buffer); - if (buffer == NULL) { - return false; - } + if (state->buffer == NULL) { + output_layer_unmap(layer); + return true; } - wl_surface_attach(layer->surface, buffer ? buffer->wl_buffer : NULL, 0, 0); - wl_surface_damage_buffer(layer->surface, 0, 0, INT32_MAX, INT32_MAX); + struct wlr_wl_buffer *buffer = + get_or_create_wl_buffer(output->backend, state->buffer); + if (buffer == NULL) { + return false; + } + wl_surface_attach(layer->surface, buffer->wl_buffer, 0, 0); + wl_surface_damage_buffer(layer->surface, 0, 0, INT32_MAX, INT32_MAX); wl_surface_commit(layer->surface); + layer->mapped = true; return true; } @@ -403,10 +415,7 @@ static bool commit_layers(struct wlr_wl_output *output, } if (!layers[i].accepted) { - // Unmap the sub-surface - // TODO: only do this once - wl_surface_attach(layer->surface, NULL, 0, 0); - wl_surface_commit(layer->surface); + output_layer_unmap(layer); continue; } |