diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-06-25 14:26:43 +0900 |
---|---|---|
committer | Hermet Park <hermetpark@gmail.com> | 2018-06-25 14:26:43 +0900 |
commit | 21112fbf587c929b7d39dbaec9c07f18d281d865 (patch) | |
tree | e9903302ed3903c85e9cb06071aa9fcd2cd7370c /src/lib/efl | |
parent | c44c1e2ea077dc689f52239ff341b546e95f2480 (diff) |
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
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 | ||