diff options
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; } |