X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Flayout.c;h=4ffcb167f837cf2bde46c2ce1336f43b6624144e;hb=65361f9f797905679c6c58c58733036911d54f7e;hp=0363af7df960159d70d7804d9079e60e3f86c500;hpb=bdd8dd718496dc8e4330209c46c196442bcf7d3e;p=src%2Fagl-compositor.git diff --git a/src/layout.c b/src/layout.c index 0363af7..4ffcb16 100644 --- a/src/layout.c +++ b/src/layout.c @@ -217,8 +217,7 @@ ivi_layout_activate_complete(struct ivi_output *output, weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link); 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 @@ -328,6 +327,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) { @@ -498,9 +503,7 @@ ivi_layout_split_committed(struct ivi_surface *surface) switch (surface->role) { case IVI_SURFACE_ROLE_SPLIT_V: - if (geom.width == woutput->width && - geom.height == woutput->height) - geom.width = (output->area.width / 2); + geom.width = (output->area.width / 2); x += woutput->width - geom.width; output->area.width -= geom.width; @@ -511,9 +514,7 @@ ivi_layout_split_committed(struct ivi_surface *surface) break; case IVI_SURFACE_ROLE_SPLIT_H: - if (geom.width == woutput->width && - geom.height == woutput->height) - geom.height = (output->area.height / 2); + geom.height = (output->area.height / 2); y = output->area.y; output->area.y += geom.height; @@ -735,7 +736,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); } } @@ -832,7 +832,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 {