From 21112fbf587c929b7d39dbaec9c07f18d281d865 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 25 Jun 2018 14:26:43 +0900 Subject: efl_gfx_path: remove unsued function. Summary: the function can be regained by reverting this. Depends on D6381 Reviewers: devilhorns Subscribers: cedric, #committers, zmike Tags: #efl Differential Revision: https://phab.enlightenment.org/D6382 --- src/lib/efl/interfaces/efl_gfx_path.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/lib/efl/interfaces/efl_gfx_path.c') diff --git a/src/lib/efl/interfaces/efl_gfx_path.c b/src/lib/efl/interfaces/efl_gfx_path.c index 97439c0fee..036c35e6a6 100644 --- a/src/lib/efl/interfaces/efl_gfx_path.c +++ b/src/lib/efl/interfaces/efl_gfx_path.c @@ -275,12 +275,6 @@ interpolate(double from, double to, double pos_map) return (from * (1.0 - pos_map)) + (to * pos_map); } -static inline int -interpolatei(int from, int to, double pos_map) -{ - return (from * (1.0 - pos_map)) + (to * pos_map); -} - static void _path_interpolation(Eo *obj, Efl_Gfx_Path_Data *pd, char *from, char *to, double pos); static void _efl_gfx_path_reset(Eo *obj, Efl_Gfx_Path_Data *pd); -- cgit v1.2.1