summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2017-06-28 14:42:28 -0700
committerCedric Bail <cedric@osg.samsung.com>2017-06-30 13:46:07 -0700
commiteaeaf8831c139880a5e179cdbab8873320a62476 (patch)
tree3cca72d52a896d41062d0d59c04fdacf17ce9bac
parent416daffe5ec36d5bbc46486742b4066c13989233 (diff)
downloadefl-eaeaf8831c139880a5e179cdbab8873320a62476.tar.gz
evas: expose evas_map_coords_get.
-rw-r--r--src/lib/evas/Evas_Legacy.h14
-rw-r--r--src/lib/evas/canvas/evas_map.c2
2 files changed, 15 insertions, 1 deletions
diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index c07cecd058..72eaa6adb9 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -7534,6 +7534,20 @@ EAPI void evas_map_free(Evas_Map *m);
EAPI int evas_map_count_get(const Evas_Map *m) EINA_CONST;
/**
+ * Apply a map transformation on given coordinate
+ *
+ * @param m map to use to transform x and y
+ * @param x point x source coordinate
+ * @param y point y source coordinate
+ * @param mx point x after transformation by m
+ * @param my point y after transformation by m
+ * @param grab
+ * @return #EINA_TRUE on success interpolation, @EINA_FALSE otherwise
+ */
+EAPI Eina_Bool evas_map_coords_get(const Evas_Map *m, double x, double y,
+ double *mx, double *my, int grab);
+
+/**
* Change the map point's coordinate.
*
* This sets the fixed point's coordinate in the map. Note that points
diff --git a/src/lib/evas/canvas/evas_map.c b/src/lib/evas/canvas/evas_map.c
index 6e81c771eb..0283762e2d 100644
--- a/src/lib/evas/canvas/evas_map.c
+++ b/src/lib/evas/canvas/evas_map.c
@@ -239,7 +239,7 @@ _evas_map_free(Evas_Object *eo_obj, Evas_Map *m)
free(m);
}
-Eina_Bool
+EAPI Eina_Bool
evas_map_coords_get(const Evas_Map *m, double x, double y,
double *mx, double *my, int grab)
{