diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_gfx_path.c | 6 |
1 files changed, 0 insertions, 6 deletions
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) | |||
275 | return (from * (1.0 - pos_map)) + (to * pos_map); | 275 | return (from * (1.0 - pos_map)) + (to * pos_map); |
276 | } | 276 | } |
277 | 277 | ||
278 | static inline int | ||
279 | interpolatei(int from, int to, double pos_map) | ||
280 | { | ||
281 | return (from * (1.0 - pos_map)) + (to * pos_map); | ||
282 | } | ||
283 | |||
284 | static void _path_interpolation(Eo *obj, Efl_Gfx_Path_Data *pd, char *from, char *to, double pos); | 278 | static void _path_interpolation(Eo *obj, Efl_Gfx_Path_Data *pd, char *from, char *to, double pos); |
285 | static void _efl_gfx_path_reset(Eo *obj, Efl_Gfx_Path_Data *pd); | 279 | static void _efl_gfx_path_reset(Eo *obj, Efl_Gfx_Path_Data *pd); |
286 | 280 | ||