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.



SVN revision: 71984
This commit is contained in:
ChunEon Park 2012-06-12 07:23:46 +00:00
parent 3a0f535a40
commit b726de235a
3 changed files with 5 additions and 43 deletions

View File

@ -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.

View File

@ -4550,29 +4550,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.
*

View File

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