summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaehyub Kim <taehyub.kim@samsung.com>2020-03-17 16:24:03 +0900
committerJunsuChoi <jsuya.choi@samsung.com>2020-03-17 16:24:03 +0900
commit1e91674acd92640108765bfd734bbfe46596d1bb (patch)
treeb6733dee2e6768e5f25e5ffad0bebc223c837120
parent4455416aa00e6712865193cef0d65d9b80c963b8 (diff)
downloadefl-1e91674acd92640108765bfd734bbfe46596d1bb.tar.gz
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
-rw-r--r--src/lib/efl/interfaces/efl_gfx_types.eot6
-rw-r--r--src/lib/evas/Evas_Legacy.h14
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;