evas vg: remove evas_object_vg_mmap_set() 53/201353/2
authorHermet Park <hermetpark@gmail.com>
Wed, 13 Mar 2019 05:16:58 +0000 (14:16 +0900)
committerjunsu choi <jsuya.choi@samsung.com>
Tue, 19 Mar 2019 05:14:05 +0000 (05:14 +0000)
the api is not necessary, remove it before official release.

Change-Id: I80061d5d6ae5af11427954a4fb4f9e9aac287bd6

src/lib/evas/Evas_Legacy.h
src/lib/evas/canvas/efl_canvas_vg_object.c

index 13acbec..91f755d 100755 (executable)
@@ -3700,26 +3700,6 @@ NULL, otherwise.
 EAPI Eina_Bool evas_object_vg_file_set(Evas_Object *obj, const char *file, const char *key);
 
 /**
- *
- * Set the source mmaped file from where an vector object must fetch the real
- * vector data (it may be one of json, svg, eet files).
- *
- * If the file supports multiple data stored in it (as Eet files do),
- * you can specify the key to be used as the index of the vector in
- * this file.
- *
- * @since 1.22
- *
- * @param[in] f The mmaped file
- * @param[in] key The vector key in @p file (if its an Eet one), or @c
-NULL, otherwise.
- *
- * @return @c EINA_TRUE if it's succeed to read file, @c EINA_FALSE otherwise.
- *
- */
-EAPI Eina_Bool evas_object_vg_mmap_set(Evas_Object *obj, const Eina_File *f, const char *key);
-
-/**
  * Set current frame of animated vector object.
  *
  * @param[in] frame_index The index of current frame.
index 977de3d..b44e5cd 100644 (file)
@@ -941,12 +941,6 @@ evas_object_vg_animated_frame_set(Evas_Object *obj, int frame_index)
 }
 
 EAPI Eina_Bool
-evas_object_vg_mmap_set(Evas_Object *obj, const Eina_File *f, const char *key)
-{
-   return efl_file_simple_mmap_load(obj, f, key);
-}
-
-EAPI Eina_Bool
 evas_object_vg_file_set(Evas_Object *obj, const char *file, const char *key)
 {
    return efl_file_simple_load(obj, file, key);