doxygen docs: Match doc with correct enum for Render_Op

Docs did not match the intended enum value due to incorrect usage of the
doxygen tags.
Also, Evas_Render_Op was the only member of the top-level Evas group, so
I moved it inside one subgroup, where methods using it reside.
This commit is contained in:
Xavi Artigas 2020-04-27 12:28:57 +02:00
parent 4d24b29b9d
commit 0e1d931be9
1 changed files with 13 additions and 13 deletions

View File

@ -2137,28 +2137,28 @@ EAPI Eina_Bool evas_object_clipees_has(const Evas_Object *obj) EINA_WARN_UNUSED_
/** How the object should be rendered to output.
*
* @ingroup Evas
* @ingroup Evas_Object_Group
*/
typedef enum
{
EVAS_RENDER_BLEND = 0, /** Default render operation: d = d*(1-sa) + s. The
EVAS_RENDER_BLEND = 0, /**< Default render operation: d = d*(1-sa) + s. The
* object will be merged onto the bottom objects using
* simple alpha compositing (a over b). */
EVAS_RENDER_BLEND_REL = 1, /** DEPRECATED. d = d*(1 - sa) + s*da */
EVAS_RENDER_COPY = 2, /** Copy mode, d = s. The object's pixels will replace
EVAS_RENDER_BLEND_REL = 1, /**< DEPRECATED. d = d*(1 - sa) + s*da */
EVAS_RENDER_COPY = 2, /**< Copy mode, d = s. The object's pixels will replace
* everything that was below, effectively hiding them.
*/
EVAS_RENDER_COPY_REL = 3, /** DEPRECATED. d = s*da */
EVAS_RENDER_ADD = 4, /** DEPRECATED. d = d + s */
EVAS_RENDER_ADD_REL = 5, /** DEPRECATED. d = d + s*da */
EVAS_RENDER_SUB = 6, /** DEPRECATED. d = d - s */
EVAS_RENDER_SUB_REL = 7, /** DEPRECATED. d = d - s*da */
EVAS_RENDER_TINT = 8, /** DEPRECATED. d = d*s + d*(1 - sa) + s*(1 - da) */
EVAS_RENDER_TINT_REL = 9, /** DEPRECATED. d = d*(1 - sa + s) */
EVAS_RENDER_MASK = 10, /** DEPRECATED. d = d*sa. For masking support, please
EVAS_RENDER_COPY_REL = 3, /**< DEPRECATED. d = s*da */
EVAS_RENDER_ADD = 4, /**< DEPRECATED. d = d + s */
EVAS_RENDER_ADD_REL = 5, /**< DEPRECATED. d = d + s*da */
EVAS_RENDER_SUB = 6, /**< DEPRECATED. d = d - s */
EVAS_RENDER_SUB_REL = 7, /**< DEPRECATED. d = d - s*da */
EVAS_RENDER_TINT = 8, /**< DEPRECATED. d = d*s + d*(1 - sa) + s*(1 - da) */
EVAS_RENDER_TINT_REL = 9, /**< DEPRECATED. d = d*(1 - sa + s) */
EVAS_RENDER_MASK = 10, /**< DEPRECATED. d = d*sa. For masking support, please
* use Efl.Canvas.Object.clip_set or EDC "clip_to" instead.
*/
EVAS_RENDER_MUL = 11 /** DEPRECATED. d = d*s */
EVAS_RENDER_MUL = 11 /**< DEPRECATED. d = d*s */
} Evas_Render_Op;
/**