summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-06-29 13:52:13 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-06-29 16:02:36 +0900
commit505aca0e42f3d3bb9a3afc8d78b03ed43d97ee6f (patch)
treef6a70b7e0622114c3e34b18e6493393231c681fd
parent65644d074e1f7b87bece5860014df6d782e5aafd (diff)
downloadefl-505aca0e42f3d3bb9a3afc8d78b03ed43d97ee6f.tar.gz
evas: Fix compilation warnings
See 7365c087c7feb218881fb8de9e371312bf1421cc Shadow variable.
-rw-r--r--src/lib/evas/canvas/evas_render.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/evas/canvas/evas_render.c b/src/lib/evas/canvas/evas_render.c
index e02ee0d5ef..b994aa29cd 100644
--- a/src/lib/evas/canvas/evas_render.c
+++ b/src/lib/evas/canvas/evas_render.c
@@ -3166,22 +3166,22 @@ evas_render_updates_internal(Evas *eo_e,
if (ENFN->image_plane_assign)
EINA_INARRAY_FOREACH(&evas->active_objects, ao)
{
- Evas_Object_Protected_Data *obj;
- Evas_Object *eo_obj;
+ Evas_Object_Protected_Data *obj2;
+ Evas_Object *eo_obj2;
- obj = ao->obj;
- eo_obj = obj->object;
+ obj2 = ao->obj;
+ eo_obj2 = obj2->object;
- if (!efl_isa(eo_obj, EFL_CANVAS_IMAGE_INTERNAL_CLASS)) continue;
+ if (!efl_isa(eo_obj2, EFL_CANVAS_IMAGE_INTERNAL_CLASS)) continue;
- if (evas_object_image_video_surface_get(eo_obj)) continue;
+ if (evas_object_image_video_surface_get(eo_obj2)) continue;
- _evas_object_image_plane_release(eo_obj, obj);
- if (!_evas_render_can_use_overlay(e, eo_obj))
+ _evas_object_image_plane_release(eo_obj2, obj2);
+ if (!_evas_render_can_use_overlay(e, eo_obj2))
{
/* This may free up things temporarily allocated by
* _can_use_overlay() testing in the engine */
- _evas_object_image_plane_release(eo_obj, obj);
+ _evas_object_image_plane_release(eo_obj2, obj2);
}
}