diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-08-31 21:24:55 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-08-31 21:24:55 +0900 |
commit | afd0841f40c0d7175b59cda8a8c31784ae232dfa (patch) | |
tree | 0ac2d421e13eabb870afda578081b612e92c1318 /src | |
parent | 0c227255a8bbc6a04dc9a87af3e531afa5ec3600 (diff) |
Fix a little : wm_layer_control
Change-Id: I2b360fc578a0d41c206ccf44474b243fd55879d2
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src')
-rw-r--r-- | src/wm_layer_control.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wm_layer_control.cpp b/src/wm_layer_control.cpp index 8770236..e0800f8 100644 --- a/src/wm_layer_control.cpp +++ b/src/wm_layer_control.cpp @@ -187,9 +187,10 @@ WMError LayerControl::updateLayer(LayerState& layer_state) WMError LayerControl::commitChange() { + HMI_INFO("Commit change"); WMError rc = WMError::SUCCESS; vector<unsigned> ivi_l_ids; - for(const auto& l : this->wm_layers) + for(auto& l : this->wm_layers) { auto state = l->getLayerState(); for(const auto& id : state.getIviIdList()) @@ -208,6 +209,7 @@ WMError LayerControl::commitChange() for(const auto& i : ivi_l_ids) { id_array[count] = i; + HMI_DEBUG("check render order %d", i); ++count; } |