diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2021-04-07 18:09:06 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2021-04-16 10:57:21 +0300 |
commit | 32ee06093b8cbde4369dcb0ad2decb969a43c844 (patch) | |
tree | 36c63e8242dd473cd3b916b3f5e2274b719744a1 | |
parent | 4ad50c10be690fda05de74272a63d5c3dbffbe78 (diff) |
layout: Remove weston_output_damage dependecy
Doing a damage_below for the view should be sufficient to trigger a
repaint. This way we don't actually need it.
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I90f4c4c13571f441b35f933f2b93aaff7efd3481
-rw-r--r-- | src/layout.c | 5 | ||||
-rw-r--r-- | src/shell.c | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/layout.c b/src/layout.c index b1d8b3d..77df18f 100644 --- a/src/layout.c +++ b/src/layout.c @@ -218,7 +218,7 @@ ivi_layout_activate_complete(struct ivi_output *output, weston_view_update_transform(view); /* force repaint of the entire output */ - weston_output_damage(output->output); + weston_view_damage_below(view); /* * the 'remote' role now makes use of this part so make sure we don't @@ -741,7 +741,6 @@ ivi_layout_activate_by_surf(struct ivi_output *output, struct ivi_surface *surf) weston_log("Placed app_id %s, type %s in hidden layer\n", app_id, ivi_layout_get_surface_role_name(surf)); - weston_output_damage(output->output); } } @@ -838,7 +837,7 @@ ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id) view->surface->is_mapped = false; weston_layer_entry_remove(&view->layer_link); - weston_output_damage(ivi_output->output); + weston_view_damage_below(view); ivi_output->active = NULL; } } else { diff --git a/src/shell.c b/src/shell.c index 5a8cc42..9e7693e 100644 --- a/src/shell.c +++ b/src/shell.c @@ -711,7 +711,7 @@ remove_black_surface(struct ivi_output *output) weston_layer_entry_remove(&view->layer_link); weston_view_update_transform(view); - weston_output_damage(output->output); + weston_view_damage_below(view); } void @@ -738,7 +738,7 @@ insert_black_surface(struct ivi_output *output) view->surface->is_mapped = true; weston_view_update_transform(view); - weston_output_damage(output->output); + weston_view_damage_below(view); } static void |