diff options
Diffstat (limited to 'src/lib/evas/canvas/evas_object_rectangle.c')
-rw-r--r-- | src/lib/evas/canvas/evas_object_rectangle.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/evas/canvas/evas_object_rectangle.c b/src/lib/evas/canvas/evas_object_rectangle.c index a90aeb7..1b132e5 100644 --- a/src/lib/evas/canvas/evas_object_rectangle.c +++ b/src/lib/evas/canvas/evas_object_rectangle.c | |||
@@ -22,7 +22,7 @@ struct _Evas_Object_Rectangle | |||
22 | 22 | ||
23 | /* private methods for rectangle objects */ | 23 | /* private methods for rectangle objects */ |
24 | static void evas_object_rectangle_init(Evas_Object *eo_obj); | 24 | static void evas_object_rectangle_init(Evas_Object *eo_obj); |
25 | static void evas_object_rectangle_render(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj, void *output, void *context, void *surface, int x, int y); | 25 | static void evas_object_rectangle_render(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj, void *output, void *context, void *surface, int x, int y, Eina_Bool do_async); |
26 | static void evas_object_rectangle_render_pre(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj); | 26 | static void evas_object_rectangle_render_pre(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj); |
27 | static void evas_object_rectangle_render_post(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj); | 27 | static void evas_object_rectangle_render_post(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj); |
28 | 28 | ||
@@ -122,7 +122,7 @@ _destructor(Eo *eo_obj, void *_obj EINA_UNUSED, va_list *list EINA_UNUSED) | |||
122 | } | 122 | } |
123 | 123 | ||
124 | static void | 124 | static void |
125 | evas_object_rectangle_render(Evas_Object *eo_obj EINA_UNUSED, Evas_Object_Protected_Data *obj, void *output, void *context, void *surface, int x, int y) | 125 | evas_object_rectangle_render(Evas_Object *eo_obj EINA_UNUSED, Evas_Object_Protected_Data *obj, void *output, void *context, void *surface, int x, int y, Eina_Bool do_async) |
126 | { | 126 | { |
127 | /* render object to surface with context, and offxet by x,y */ | 127 | /* render object to surface with context, and offxet by x,y */ |
128 | obj->layer->evas->engine.func->context_color_set(output, | 128 | obj->layer->evas->engine.func->context_color_set(output, |
@@ -141,7 +141,8 @@ evas_object_rectangle_render(Evas_Object *eo_obj EINA_UNUSED, Evas_Object_Protec | |||
141 | obj->cur.geometry.x + x, | 141 | obj->cur.geometry.x + x, |
142 | obj->cur.geometry.y + y, | 142 | obj->cur.geometry.y + y, |
143 | obj->cur.geometry.w, | 143 | obj->cur.geometry.w, |
144 | obj->cur.geometry.h); | 144 | obj->cur.geometry.h, |
145 | do_async); | ||
145 | //// obj->cur.cache.geometry.x + x, | 146 | //// obj->cur.cache.geometry.x + x, |
146 | //// obj->cur.cache.geometry.y + y, | 147 | //// obj->cur.cache.geometry.y + y, |
147 | //// obj->cur.cache.geometry.w, | 148 | //// obj->cur.cache.geometry.w, |