From 6895ea9b23ba68a2fce62e58b470f91e7c27c10a Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 11 Jan 2010 03:31:59 +0000 Subject: [PATCH] oops - fogot to fix symbols used. fix. SVN revision: 45033 --- src/modules/comp/e_mod_comp.c | 16 ++++++++-------- src/modules/comp/e_mod_comp_update.h | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/modules/comp/e_mod_comp.c b/src/modules/comp/e_mod_comp.c index 137b1a31f..67b9dc988 100644 --- a/src/modules/comp/e_mod_comp.c +++ b/src/modules/comp/e_mod_comp.c @@ -114,18 +114,18 @@ _e_mod_comp_cb_animator(void *data) } if ((cw->pw > 0) && (cw->ph > 0)) { - _e_mod_comp_update_resize(cw->up, cw->pw, cw->ph); + e_mod_comp_update_resize(cw->up, cw->pw, cw->ph); if (!cw->xim) { if (cw->xim = ecore_x_image_new(cw->pw, cw->ph, cw->vis, cw->depth)) - _e_mod_comp_update_add(cw->up, 0, 0, cw->pw, cw->ph); + e_mod_comp_update_add(cw->up, 0, 0, cw->pw, cw->ph); } - r = _e_mod_comp_update_rects_get(cw->up); + r = e_mod_comp_update_rects_get(cw->up); if (r) { if (cw->xim) { - _e_mod_comp_update_clear(cw->up); + e_mod_comp_update_clear(cw->up); for (i = 0; r[i].w > 0; i++) { unsigned int *pix; @@ -355,7 +355,7 @@ _e_mod_comp_win_add(Comp *c, Ecore_X_Window win) cw->obj = evas_object_rectangle_add(c->evas); evas_object_color_set(cw->obj, 0, 0, 0, 64); } - cw->up = _e_mod_comp_update_new(); + cw->up = e_mod_comp_update_new(); DBG(" [0x%x] add\n", cw->win); return cw; } @@ -363,7 +363,7 @@ _e_mod_comp_win_add(Comp *c, Ecore_X_Window win) static void _e_mod_comp_win_del(Comp_Win *cw) { - _e_mod_comp_update_free(cw->up); + e_mod_comp_update_free(cw->up); DBG(" [0x%x] del\n", cw->win); if (cw->pixmap) { @@ -549,7 +549,7 @@ _e_mod_comp_win_damage(Comp_Win *cw, int x, int y, int w, int h, Eina_Bool dmg) cw->update = 1; cw->c->updates = eina_list_append(cw->c->updates, cw); } - _e_mod_comp_update_add(cw->up, x, y, w, h); + e_mod_comp_update_add(cw->up, x, y, w, h); _e_mod_comp_win_render_queue(cw); } @@ -563,7 +563,7 @@ _e_mod_comp_win_reshape(Comp_Win *cw) cw->update = 1; cw->c->updates = eina_list_append(cw->c->updates, cw); } - _e_mod_comp_update_add(cw->up, 0, 0, cw->w, cw->h); + e_mod_comp_update_add(cw->up, 0, 0, cw->w, cw->h); _e_mod_comp_win_render_queue(cw); } diff --git a/src/modules/comp/e_mod_comp_update.h b/src/modules/comp/e_mod_comp_update.h index d8e4d7ff4..6b2addfd9 100644 --- a/src/modules/comp/e_mod_comp_update.h +++ b/src/modules/comp/e_mod_comp_update.h @@ -11,12 +11,12 @@ struct _Update_Rect int x, y, w, h; }; -Update *e_mod_comp_update_new(void); -void e_mod_comp_update_free(Update *up); -void e_mod_comp_update_resize(Update *up, int w, int h); -void e_mod_comp_update_add(Update *up, int x, int y, int w, int h); -Update_Rect *e_mod_comp_update_rects_get(Update *up); -void e_mod_comp_update_clear(Update *up); +Update *e_mod_comp_update_new (void); +void e_mod_comp_update_free (Update *up); +void e_mod_comp_update_resize (Update *up, int w, int h); +void e_mod_comp_update_add (Update *up, int x, int y, int w, int h); +Update_Rect *e_mod_comp_update_rects_get (Update *up); +void e_mod_comp_update_clear (Update *up); #endif #endif