jsuya pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1e91674acd92640108765bfd734bbfe46596d1bb

commit 1e91674acd92640108765bfd734bbfe46596d1bb
Author: Taehyub Kim <taehyub....@samsung.com>
Date:   Tue Mar 17 16:24:03 2020 +0900

    evas_vg: modified the join enum documentation
    
    Summary:
    modified the join enum documentation for Efl_Gfx_Join and Evas_Vg_Join
    since the order of documentation is wrong
    
    Depends on D11519
    
    Reviewers: jsuya, Hermet
    
    Reviewed By: jsuya
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D11521
---
 src/lib/efl/interfaces/efl_gfx_types.eot |  6 +++---
 src/lib/evas/Evas_Legacy.h               | 14 +++++++-------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/lib/efl/interfaces/efl_gfx_types.eot 
b/src/lib/efl/interfaces/efl_gfx_types.eot
index 8a987890f2..59c8f2c64c 100644
--- a/src/lib/efl/interfaces/efl_gfx_types.eot
+++ b/src/lib/efl/interfaces/efl_gfx_types.eot
@@ -74,9 +74,9 @@ enum Efl.Gfx.Join
     @Efl.Gfx.Shape.stroke_join.set
      @since 1.22
   ]]
-  miter = 0, [[Used to render rounded line joins. Circular arcs are used to 
join two lines smoothly.]]
-  round, [[Used to render beveled line joins. The outer corner of the joined 
lines is filled by enclosing the triangular region of the corner with a 
straight line between the outer corners of each stroke.]]
-  bevel, [[Used to render mitered line joins. The intersection of the strokes 
is clipped at a line perpendicular to the bisector of the angle between the 
strokes, at the distance from the intersection of the segments equal to the 
product of the miter limit value and the border radius.  This prevents long 
spikes being created.]]
+  miter = 0, [[Used to render mitered line joins. The intersection of the 
strokes is clipped at a line perpendicular to the bisector of the angle between 
the strokes, at the distance from the intersection of the segments equal to the 
product of the miter limit value and the border radius.  This prevents long 
spikes being created.]]
+  round, [[Used to render rounded line joins. Circular arcs are used to join 
two lines smoothly.]]
+  bevel, [[Used to render beveled line joins. The outer corner of the joined 
lines is filled by enclosing the triangular region of the corner with a 
straight line between the outer corners of each stroke.]]
   last [[Sentinel value to indicate last enum field during iteration]]
 }
 
diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index b857589dc5..b74eb717d4 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -3725,18 +3725,18 @@ typedef enum Evas_Vg_Cap_Type
  */
 typedef enum Evas_Vg_Join_Type
 {
-  EVAS_VG_JOIN_MITER = 0, /**< Used to render rounded line joins. Circular arcs
-                           * are used to join two lines smoothly */
-  EVAS_VG_JOIN_ROUND,     /**< Used to render beveled line joins. The outer 
corner
-                           * of the joined lines is filled by enclosing the
-                           * triangular region of the corner with a straight 
line
-                           * between the outer corners of each stroke */
-  EVAS_VG_JOIN_BEVEL,     /**< Used to render mitered line joins. The 
intersection
+  EVAS_VG_JOIN_MITER = 0, /**< Used to render mitered line joins. The 
intersectioni
                            * of the strokes is clipped at a line perpendicular 
to
                            * the bisector of the angle between the strokes, at 
the
                            * distance from the intersection of the segments 
equal
                            * to the product of the miter limit value and the 
border
                            * radius.  This prevents long spikes being created 
*/
+  EVAS_VG_JOIN_ROUND,     /**< Used to render rounded line joins. Circular arcs
+                           * are used to join two lines smoothly */
+  EVAS_VG_JOIN_BEVEL,     /**< Used to render beveled line joins. The outer 
corner
+                           * of the joined lines is filled by enclosing the
+                           * triangular region of the corner with a straight 
line
+                           * between the outer corners of each stroke */
   EVAS_VG_JOIN_LAST       /**< Sentinel value to indicate last enum field 
during
                            * teration */
 } Evas_Vg_Join;

-- 


Reply via email to