summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrivardhan Hebbar <sri.hebbar@samsung.com>2015-07-23 09:32:46 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2015-07-23 09:32:46 +0100
commitc2ff5bfc823222de25d9e5099e8cf7084e67978d (patch)
tree9ef024fdd596bff961694da1449f11954af2462c
parentf8dda3350c9de2ae5bb780c9df9772b9d62c089d (diff)
downloadefl-c2ff5bfc823222de25d9e5099e8cf7084e67978d.tar.gz
evas out: Eolian doc conversion of out.
Summary: Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com> Reviewers: cedric, tasn, q66 Reviewed By: q66 Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2855
-rw-r--r--src/lib/evas/canvas/evas_out.eo14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/lib/evas/canvas/evas_out.eo b/src/lib/evas/canvas/evas_out.eo
index d264889eed..0b68f3e82e 100644
--- a/src/lib/evas/canvas/evas_out.eo
+++ b/src/lib/evas/canvas/evas_out.eo
@@ -5,10 +5,14 @@ class Evas.Out (Eo.Base)
methods {
@property view {
set {
- /*@ Sets the viewport region of the canvas that the output displays This sets both the viewport region in the canvas that displays on the given output, but also the viewport size will match the output resolution 1:1. */
+ [[Sets the viewport region of the canvas that the output displays.
+
+ This sets both the viewport region in the canvas that displays
+ on the given output, but also the viewport size will match the
+ output resolution 1:1.]]
}
get {
- /*@ Gets the viewport region of the canvas that the output displays */
+ [[Gets the viewport region of the canvas that the output displays.]]
}
values {
x: Evas_Coord;
@@ -19,14 +23,14 @@ class Evas.Out (Eo.Base)
}
@property engine_info {
set {
- /*@ Sets the engine specific output parameters for a given output. */
+ [[Sets the engine specific output parameters for a given output.]]
return: bool;
}
get {
- /*@ Gets the engine specific output parameters for a given output. */
+ [[Gets the engine specific output parameters for a given output.]]
}
values {
- info: Evas_Engine_Info *; /*@ The engine parameters */
+ info: Evas_Engine_Info *; [[The engine parameters.]]
}
}
}