X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Flayout.c;h=77df18f948bc46a80277e528567e12fa8099da25;hb=32ee06093b8cbde4369dcb0ad2decb969a43c844;hp=1895a07c8dc0c840a4e765cf0fe2af862f170705;hpb=1f888f2050ac50ec8c1750ff4f0e2c485936d7ed;p=src%2Fagl-compositor.git diff --git a/src/layout.c b/src/layout.c index 1895a07..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 @@ -241,6 +241,9 @@ ivi_layout_find_with_app_id(const char *app_id, struct ivi_compositor *ivi) { struct ivi_output *out; + if (!app_id) + return NULL; + wl_list_for_each(out, &ivi->outputs, link) { if (!out->app_id) continue; @@ -325,6 +328,12 @@ ivi_layout_desktop_committed(struct ivi_surface *surf) return; } + if (!surf->ivi->activate_by_default) { + weston_log("Refusing to activate surface role %d, app_id %s\n", + surf->role, app_id); + return; + } + /* use the output of the bg to activate the app on start-up by * default */ if (surf->view && r_output) { @@ -732,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); } } @@ -742,6 +750,9 @@ ivi_layout_activate(struct ivi_output *output, const char *app_id) struct ivi_surface *surf; struct ivi_compositor *ivi = output->ivi; + if (!app_id) + return; + surf = ivi_find_app(ivi, app_id); if (!surf) return; @@ -795,6 +806,9 @@ ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id) struct ivi_output *ivi_output; struct ivi_policy *policy = ivi->policy; + if (!app_id) + return; + surf = ivi_find_app(ivi, app_id); if (!surf) return; @@ -823,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 {