From 2bd389f47cd6947e0ab304eabafde8e793024d51 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 16 Oct 2014 12:58:33 -0400 Subject: [PATCH] remove some debug messages Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 54b35b332..ad339a733 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -326,7 +326,6 @@ _e_comp_wl_surface_cb_damage(struct wl_client *client EINA_UNUSED, struct wl_res uint64_t pixid; E_Client *ec; Eina_Rectangle *dmg = NULL; - int pw, ph; DBG("Surface Cb Damage: %d", wl_resource_get_id(resource)); DBG("\tGeom: %d %d %d %d", x, y, w, h); @@ -335,7 +334,6 @@ _e_comp_wl_surface_cb_damage(struct wl_client *client EINA_UNUSED, struct wl_res if (!(ep = wl_resource_get_user_data(resource))) return; pixid = e_pixmap_window_get(ep); - DBG("\tSurface has Pixmap: %llu", pixid); /* try to find the associated e_client */ if (!(ec = e_pixmap_client_get(ep))) @@ -349,15 +347,6 @@ _e_comp_wl_surface_cb_damage(struct wl_client *client EINA_UNUSED, struct wl_res if (!ec->comp_data) return; - e_pixmap_size_get(ep, &pw, &ph); - DBG("\tPixmap Size: %d %d", pw, ph); - - DBG("\tPending Size: %d %d", ec->comp_data->pending.w, - ec->comp_data->pending.h); - - DBG("\tE Client Size: %d %d", ec->client.w, ec->client.h); - DBG("\tE Size: %d %d", ec->w, ec->h); - /* create new damage rectangle */ dmg = eina_rectangle_new(x, y, w, h); @@ -555,9 +544,6 @@ _e_comp_wl_compositor_cb_surface_create(struct wl_client *client, struct wl_reso wl_client_get_credentials(client, &pid, NULL, NULL); wid = e_comp_wl_id_get(pid, id); - DBG("\tClient Pid: %d", pid); - DBG("\tWl Id: %llu", wid); - /* check for existing pixmap */ if (!(ep = e_pixmap_find(E_PIXMAP_TYPE_WL, wid))) {