summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2014-10-16 12:58:33 -0400
committerChris Michael <cp.michael@samsung.com>2014-10-16 13:00:26 -0400
commitec91cda58c0ac857b3e51e203d6b3c060adfc44f (patch)
treeaa589ce6b595990d8e2211054be2c21f775db6f7
parentb567bbc339afdaef01bb8a3b2c9d43d7fd69aa7e (diff)
downloadenlightenment-ec91cda58c0ac857b3e51e203d6b3c060adfc44f.tar.gz
remove some debug messages
Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/bin/e_comp_wl.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
index 54b35b3321..ad339a7331 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)))
{