stefan pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=005768796a108522072f5d0ffa80744f078e6539

commit 005768796a108522072f5d0ffa80744f078e6539
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Tue Oct 20 17:23:19 2015 +0200

    examples/sphere_hunter: remove unused function
    
    After fixing the Coverity issue clang told me that this function is actually
    not used at all.
---
 src/examples/sphere_hunter/evas_3d_sphere_hunter.c | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/src/examples/sphere_hunter/evas_3d_sphere_hunter.c 
b/src/examples/sphere_hunter/evas_3d_sphere_hunter.c
index 87f11ae..1307b5f 100644
--- a/src/examples/sphere_hunter/evas_3d_sphere_hunter.c
+++ b/src/examples/sphere_hunter/evas_3d_sphere_hunter.c
@@ -179,25 +179,6 @@ static const unsigned short cube_indices[] =
    20, 21, 22, 22, 21, 23
 };
 
-static inline vec3
-_normalize(const vec3 *v)
-{
-
-   double l;
-   vec3 vec = {0.0, 0.0, 0.0};
-
-   l = sqrt((v->x * v->x) + (v->y * v->y) + (v->z * v->z));
-
-   if (l != 0)
-     {
-        vec.x = v->x / l;
-        vec.y = v->y / l;
-        vec.z = v->z / l;
-     }
-
-   return vec;
-}
-
 static void
 _sphere_fini()
 {

-- 


Reply via email to