xartigas pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0e1d931be96eee38f15e8c5219f8df16811d1b71

commit 0e1d931be96eee38f15e8c5219f8df16811d1b71
Author: Xavi Artigas <[email protected]>
Date:   Mon Apr 27 12:28:57 2020 +0200

    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.
---
 src/lib/evas/Evas_Legacy.h | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index 045ed65e71..a0499169c4 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -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;
 
 /**

-- 


Reply via email to