efl - fix eina after misnaming of piblic api

this fixes 3d77f55f91 which added
eina_normal3_matrix_get in the headers as the api, but the actual func
was eina_normal_matrix3_get.
This commit is contained in:
Carsten Haitzler 2015-11-10 11:56:01 +09:00
parent f74ab7f7d2
commit 43ef6152ed
1 changed files with 1 additions and 1 deletions

View File

@ -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. */