From: hermet Date: Tue, 12 Jun 2012 07:23:46 +0000 (+0000) Subject: evas/map - removed empty evas_object_map_source_set/get APIs. X-Git-Tag: submit/trunk/20120815.174732~246 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=001b333ff8f758ba0c095c03924ae557180cb5f8;p=profile%2Fivi%2Fevas.git evas/map - removed empty evas_object_map_source_set/get APIs. They does nothing and discarded since the evas_object_image_source_set/get is providing. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@71984 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/ChangeLog b/ChangeLog index c28514e..43a64de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -792,7 +792,11 @@ * Limit the updated region to fit in CPU cache for Pipe rendering. -2012-06-12 ChunEon Park +2012-06-12 ChunEon Park (Hermet) * Fixed simple line drawing on s/w backened. Unmatched loop scope caused the destination buffer pointer march in place. + +2012-06-12 ChunEon Park (Hermet) + + * Removed empty evas_object_map_source_set/get APIs. Will Not be implemented. diff --git a/src/lib/Evas.h b/src/lib/Evas.h index 8f49b55..a1ef41a 100644 --- a/src/lib/Evas.h +++ b/src/lib/Evas.h @@ -4551,29 +4551,6 @@ EAPI void evas_object_map_enable_set (Evas_Object *obj, Eina EAPI Eina_Bool evas_object_map_enable_get (const Evas_Object *obj); /** - * Set the map source object - * - * This sets the object from which the map is taken - can be any object that - * has map enabled on it. - * - * Currently not implemented. for future use. - * - * @param obj object to set the map source of - * @param src the source object from which the map is taken - */ -EAPI void evas_object_map_source_set (Evas_Object *obj, Evas_Object *src); - -/** - * Get the map source object - * - * @param obj object to set the map source of - * @return the object set as the source - * - * @see evas_object_map_source_set() - */ -EAPI Evas_Object *evas_object_map_source_get (const Evas_Object *obj); - -/** * Set current object transformation map. * * This sets the map on a given object. It is copied from the @p map pointer, diff --git a/src/lib/canvas/evas_map.c b/src/lib/canvas/evas_map.c index cc110c8..0f2ccf7 100644 --- a/src/lib/canvas/evas_map.c +++ b/src/lib/canvas/evas_map.c @@ -438,25 +438,6 @@ evas_object_map_enable_get(const Evas_Object *obj) return obj->cur.usemap; } - -EAPI void -evas_object_map_source_set(Evas_Object *obj, Evas_Object *src) -{ - MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); - return; - MAGIC_CHECK_END(); - (void)src; /* method still needs to be implemented. */ -} - -EAPI Evas_Object * -evas_object_map_source_get(const Evas_Object *obj) -{ - MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); - return NULL; - MAGIC_CHECK_END(); - return NULL; -} - EAPI void evas_object_map_set(Evas_Object *obj, const Evas_Map *map) {