eina: Clarify that Eina_Matrix_Type can describe any matrix

Summary:
The Eina_Matrix_Type enum is returned by eina_matrix4_type_get and
eina_matrix2_type_get; it is not Matrix3-specific.  Update doxygen
accordingly.

Reviewers: devilhorns

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D5744
This commit is contained in:
Bryce Harrington 2018-01-18 08:19:08 -05:00 committed by Chris Michael
parent 5f59a76587
commit 77dc9ab874
1 changed files with 5 additions and 5 deletions

View File

@ -41,14 +41,14 @@
/**
* @typedef Eina_Matrix_Type
* Matrix3 types
* Matrix types
*/
typedef enum _Eina_Matrix_Type
{
EINA_MATRIX_TYPE_IDENTITY, /**< Identity matrix3 type */
EINA_MATRIX_TYPE_AFFINE, /**< Affine matrix3 type */
EINA_MATRIX_TYPE_PROJECTIVE, /**< Projective matrix3 type */
EINA_MATRIX_TYPE_LAST /**< The total number of matrix3 types */
EINA_MATRIX_TYPE_IDENTITY, /**< Identity matrix type */
EINA_MATRIX_TYPE_AFFINE, /**< Affine matrix type */
EINA_MATRIX_TYPE_PROJECTIVE, /**< Projective matrix type */
EINA_MATRIX_TYPE_LAST /**< The total number of matrix types */
} Eina_Matrix_Type;
/**