remove some debug messages

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-10-16 12:58:33 -04:00
parent 2696821734
commit 2bd389f47c
1 changed files with 0 additions and 14 deletions

View File

@ -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)))
{