eina_quad: Add since tags for new eina_quad*()

This needs documentation for the new functions.
This commit is contained in:
Stefan Schmidt 2015-04-08 14:20:27 +02:00
parent 15e11cb05f
commit a12c53ba7a
1 changed files with 13 additions and 0 deletions

View File

@ -45,15 +45,28 @@ typedef struct _Eina_Quad
double y3; /**< Bottom left y coordinate */
} Eina_Quad;
/**
* @since 1.14
* */
EAPI void eina_quad_rectangle_to(const Eina_Quad *q,
Eina_Rectangle *r);
/**
* @since 1.14
* */
EAPI void eina_quad_rectangle_from(Eina_Quad *q,
const Eina_Rectangle *r);
/**
* @since 1.14
* */
EAPI void eina_quad_coords_set(Eina_Quad *q,
double x1, double y1,
double x2, double y2,
double x3, double y3,
double x4, double y4);
/**
* @since 1.14
* */
EAPI void eina_quad_coords_get(const Eina_Quad *q,
double *x1, double *y1,
double *x2, double *y2,