add some log for debugging 84/167084/1 accepted/tizen/unified/20180119.061110 submit/tizen/20180116.114446
authorDoyoun Kang <doyoun.kang@samsung.com>
Mon, 15 Jan 2018 09:03:12 +0000 (18:03 +0900)
committerDoyoun Kang <doyoun.kang@samsung.com>
Mon, 15 Jan 2018 09:03:12 +0000 (18:03 +0900)
Change-Id: I6f58920d3eac27b35fd3a46ad43eeb8bd3893a60

src/bin/e_comp_wl.c
src/bin/e_policy_visibility.c

index e8e8ca15777782a47edbfde9996b5d0f03a826b3..624c3d5410d0b2eff257a025101f1bac22df0201 100644 (file)
@@ -2786,6 +2786,14 @@ _e_comp_wl_surface_cb_attach(struct wl_client *client EINA_UNUSED, struct wl_res
           }
      }
 
+   if (!ec->comp_data->mapped)
+     {
+        if (!(ec->internal || ec->comp_data->sub.data))
+          {
+             ELOGF("COMP", "Current unmapped. ATTACH buffer:%p", ec->pixmap, ec, buffer);
+          }
+     }
+
    _e_comp_wl_surface_state_buffer_set(&ec->comp_data->pending, buffer);
 
    ec->comp_data->pending.sx = sx;
@@ -2939,6 +2947,14 @@ _e_comp_wl_surface_cb_commit(struct wl_client *client EINA_UNUSED, struct wl_res
    if (!(ec = wl_resource_get_user_data(resource))) return;
    if (e_object_is_del(E_OBJECT(ec))) return;
 
+   if (!ec->comp_data->mapped)
+     {
+        if (!(ec->internal || ec->comp_data->sub.data))
+          {
+             ELOGF("COMP", "Current unmapped. COMMIT. pixmap_usable:%d", ec->pixmap, ec, e_pixmap_usable_get(ec->pixmap));
+          }
+     }
+
    if (ec->comp_data->need_commit_extern_parent)
      {
         ec->comp_data->need_commit_extern_parent = 0;
index 2fa1ca9ffcabab7e01452ab0704c84618bca29f3..d971dd2adb341030977d7c4d7a0ed4e143024521 100644 (file)
@@ -1339,7 +1339,7 @@ _e_vis_ec_activity_check(E_Client *ec, Eina_Bool check_alpha)
 static void
 _e_vis_ec_job_exec(E_Client *ec, E_Vis_Job_Type type)
 {
-   VS_DBG(ec, "Job Run: type %d", type);
+   VS_INF(ec, "Job Run: type %d", type);
 
    E_Vis_Client *vc = NULL;
    if (ec)