From 43ef6152eda0ac0e4ef3aee55b25264f12e4e64b Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 10 Nov 2015 11:56:01 +0900 Subject: [PATCH] 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 a7bdddfc8e..90493d3f96 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. */