docs: proper formatting of some Efl.Gfx EO docs
authorXavi Artigas <xavierartigas@yahoo.es>
Thu, 27 Dec 2018 15:41:46 +0000 (16:41 +0100)
committerShinwoo Kim <cinoo.kim@samsung.com>
Thu, 3 Jan 2019 09:00:25 +0000 (18:00 +0900)
src/lib/efl/interfaces/efl_gfx_types.eot

index d883a46..7e74833 100644 (file)
@@ -46,7 +46,7 @@ enum Efl.Gfx.Path_Command_Type {
 enum Efl.Gfx.Cap {
   [[These values determine how the end of opened sub-paths are rendered in a
     stroke.
-    $ref efl_gfx_shape_stroke_cap_set()
+    @Efl.Gfx.Shape.stroke_cap_set()
     @since 1.14
   ]]
   butt = 0,  [[The end of lines is rendered as a full stop on the last point itself.]]
@@ -58,7 +58,7 @@ enum Efl.Gfx.Cap {
 enum Efl.Gfx.Join
 {
   [[These values determine how two joining lines are rendered in a stroker.
-    $ref efl_gfx_shape_stroke_join_set()
+    @Efl.Gfx.Shape.stroke_join_set()
     @since 1.14
   ]]
   miter = 0, [[Used to render rounded line joins. Circular arcs are used to join two lines smoothly.]]
@@ -70,7 +70,7 @@ enum Efl.Gfx.Join
 enum Efl.Gfx.Gradient_Spread
 {
   [[Specifies how the area outside the gradient area should be filled.
-    $ref efl_gfx_gradient_spread_set()
+    @Efl.Gfx.Gradient.spread_set()
     @since 1.14
   ]]
   pad, [[The area is filled with the closest stop color. This is the default.]]
@@ -90,7 +90,7 @@ enum Efl.Gfx.Fill_Rule
 
 struct Efl.Gfx.Dash {
   [[Type describing dash.
-    $ref efl_gfx_shape_stroke_dash_set()
+    @Efl.Gfx.Shape.stroke_dash_set()
     @since 1.14
   ]]
   length: double;  [[Dash drawing length.]]
@@ -144,8 +144,8 @@ struct Efl.Gfx.Shape_Public
 enum Efl.Gfx.Border_Fill_Mode
 {
    [[How an image's center region (the complement to the border region) should be rendered by EFL]]
-   none = 0, [[Image's center region is $not to be rendered]]
-   default = 1, [[Image's center region is to be $b blended with objects underneath it, if it has transparency. This is the default behavior for image objects]]
+   none = 0, [[Image's center region is $not to be rendered]]
+   default = 1, [[Image's center region is to be $blended with objects underneath it, if it has transparency. This is the default behavior for image objects]]
    solid = 2 [[Image's center region is to be made solid, even if it has transparency on it]]
 }