hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=21112fbf587c929b7d39dbaec9c07f18d281d865

commit 21112fbf587c929b7d39dbaec9c07f18d281d865
Author: Marcel Hollerbach <[email protected]>
Date:   Mon Jun 25 14:26:43 2018 +0900

    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(-)

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);
 

-- 


Reply via email to