hwc: add log at E_HWC_WINDOW_STATE_NONE 01/170101/3
authorSooChan Lim <sc1.lim@samsung.com>
Mon, 12 Feb 2018 11:09:20 +0000 (20:09 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Wed, 14 Feb 2018 01:34:11 +0000 (01:34 +0000)
Change-Id: Icb68e54b46007e333437139030ec0c1723b57d3a

src/bin/e_output_hwc_windows.c

index fc2f4b4c91f9204ad711b7b74de275f2705d6b72..a55dc66f546e57ad18d682c101c948c92ab26d35 100644 (file)
@@ -1096,6 +1096,8 @@ _e_output_hwc_windows_visible_windows_list_get(E_Output_Hwc *output_hwc)
         if (e_object_is_del(E_OBJECT(ec)))
           {
              e_hwc_window_state_set(hwc_window, E_HWC_WINDOW_STATE_NONE);
+             ELOGF("HWC-WINS", "   ehw:%p -- {%25s} ec is destroying. Set E_HWC_WINDOW_STATE_NONE.",
+                   ec->pixmap, ec, ec->hwc_window, ec->icccm.title);
              continue;
           }
 
@@ -1103,6 +1105,8 @@ _e_output_hwc_windows_visible_windows_list_get(E_Output_Hwc *output_hwc)
         if (e_client_util_ignored_get(ec))
           {
              e_hwc_window_state_set(hwc_window, E_HWC_WINDOW_STATE_NONE);
+             ELOGF("HWC-WINS", "   ehw:%p -- {%25s} ec is ignored. Set E_HWC_WINDOW_STATE_NONE.",
+                   ec->pixmap, ec, ec->hwc_window, ec->icccm.title);
              continue;
           }
 
@@ -1110,6 +1114,8 @@ _e_output_hwc_windows_visible_windows_list_get(E_Output_Hwc *output_hwc)
         if (!evas_object_visible_get(ec->frame))
           {
              e_hwc_window_state_set(hwc_window, E_HWC_WINDOW_STATE_NONE);
+             ELOGF("HWC-WINS", "   ehw:%p -- {%25s} ec->frame is not visible. Set E_HWC_WINDOW_STATE_NONE.",
+                   ec->pixmap, ec, ec->hwc_window, ec->icccm.title);
              continue;
           }