From: Jaehyun Cho Date: Wed, 25 Oct 2017 12:35:27 +0000 (+0900) Subject: eina_matrix: Fix doxygen warnings X-Git-Tag: accepted/tizen/unified/20171102.061602~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F60%2F157660%2F4;p=platform%2Fupstream%2Fefl.git eina_matrix: Fix doxygen warnings Change-Id: I7e697bae24170422d6253f91ce089d9485bd0e64 --- diff --git a/src/lib/eina/eina_matrix.h b/src/lib/eina/eina_matrix.h index d8f9bf8..dd59699 100644 --- a/src/lib/eina/eina_matrix.h +++ b/src/lib/eina/eina_matrix.h @@ -643,6 +643,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 @@ -926,11 +927,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 * @@ -1003,8 +1005,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 * @@ -1049,8 +1051,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 *