From 5dd3cfcc31b87c26cfd8f5cd4ba437082e181f1b Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Mon, 11 Jun 2018 11:39:00 +0900 Subject: Register surface in set role Change-Id: I72e1225077ba33cb5d67977ef68462886005ede3 Signed-off-by: Kazumasa Mitsunari --- src/app.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app.cpp b/src/app.cpp index 897dee7..5913143 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -1373,6 +1373,17 @@ bool App::api_set_role(char const *appid, char const *drawing_name, unsigned pid id.c_str(), surface, *lid, role.c_str()); app_list->addClient(id, *lid, surface, role); } + + // register pair drawing_name and ivi_id + this->id_alloc.register_name_id(role.c_str(), surface); + this->layers.add_surface(surface, *lid); + + // this surface is already created + HMI_DEBUG("wm", "surface_id is %u, layer_id is %u", surface, *lid); + + this->controller->layers[*lid]->add_surface(surface); + this->layout_commit(); + return ret; } -- cgit 1.2.3-korg