From 6c8ca79ff2dabbf905952a7a073589fa2a72eef4 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Wed, 25 Oct 2017 21:35:27 +0900 Subject: [PATCH] eina_matrix: Fix doxygen warnings Change-Id: I7e697bae24170422d6253f91ce089d9485bd0e64 --- src/lib/eina/eina_matrix.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/lib/eina/eina_matrix.h b/src/lib/eina/eina_matrix.h index 64053e2deb..feed8935ec 100644 --- a/src/lib/eina/eina_matrix.h +++ b/src/lib/eina/eina_matrix.h @@ -551,6 +551,7 @@ EAPI Eina_Bool eina_matrix3_quad_quad_map(Eina_Matrix3 *m, * * @param m The transformation matrix to create. * @param q The source quadrangle. + * @return @c EINA_TRUE if matrix could be successfully created, @c EINA_FALSE otherwise. * * Calculates a matrix @p m that can be used to transform an arbitrary * quadrangle @p q into a square. If @p q is a parallelogram, then a @@ -778,11 +779,12 @@ EAPI double eina_matrix4_determinant(const Eina_Matrix4 *m); /** * @brief Returns the determinant of the given matrix. * - * @param m The matrix. + * @param out The normalized matrix + * @param in The matrix. * @return The determinant. * - * This function returns the determinant of the matrix @p m. No check - * is done on @p m. + * This function returns the determinant of the matrix @p in. No check + * is done on @p in. * * @since 1.16 */ @@ -835,8 +837,8 @@ EAPI void eina_matrix4_identity(Eina_Matrix4 *out); * @brief Multiplies two matrix. * * @param out The resulting matrix - * @param a The first member of the multiplication - * @param b The second member of the multiplication + * @param mat_a The first member of the multiplication + * @param mat_b The second member of the multiplication * * @since 1.17 */ @@ -869,8 +871,8 @@ EAPI void eina_matrix4_copy(Eina_Matrix4 *dst, const Eina_Matrix4 *src); * @brief Multiplies two matrix with check. * * @param out The resulting matrix - * @param a The first member of the multiplication - * @param b The second member of the multiplication + * @param mat_a The first member of the multiplication + * @param mat_b The second member of the multiplication * * @since 1.17 */