raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=43ef6152eda0ac0e4ef3aee55b25264f12e4e64b
commit 43ef6152eda0ac0e4ef3aee55b25264f12e4e64b Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Nov 10 11:56:01 2015 +0900 efl - fix eina after misnaming of piblic api this fixes 3d77f55f910a844b45019238ed458bf62e6c1c20 which added eina_normal3_matrix_get in the headers as the api, but the actual func was eina_normal_matrix3_get. --- src/lib/eina/eina_matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_matrix.c b/src/lib/eina/eina_matrix.c index a7bdddf..90493d3 100644 --- a/src/lib/eina/eina_matrix.c +++ b/src/lib/eina/eina_matrix.c @@ -1144,7 +1144,7 @@ eina_matrix3_scale_transform_set(Eina_Matrix3 *out, double s_x, double s_y) } EAPI void -eina_normal_matrix3_get(Eina_Matrix3 *out, const Eina_Matrix4 *m) +eina_normal3_matrix_get(Eina_Matrix3 *out, const Eina_Matrix4 *m) { /* Normal matrix is a transposed matrix of inversed modelview. * And we need only upper-left 3x3 terms to work with. */ --
