summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@collabora.co.uk>2011-01-31 11:05:10 +0100
committerEdward Hervey <edward.hervey@collabora.co.uk>2011-05-06 10:38:59 +0200
commite49e58b045ef0e8f23c8a1df2443d435440116df (patch)
tree21881c9f16c22d5b92c84ec36ba036c5277c814b
parent31b92d5ef4513376bc617fb30fcf78fdf6f4fc4e (diff)
design: add a description of the ges_timeline_object_get_top_effect_postion method
-rw-r--r--docs/design/effects.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/design/effects.txt b/docs/design/effects.txt
index 7be99b9f..f4c989aa 100644
--- a/docs/design/effects.txt
+++ b/docs/design/effects.txt
@@ -231,6 +231,20 @@ C. Keyframes
ges_timeline_object_set_top_effect_position (GESTimelineObject *object,
GESTrackEffect *effect, guint newposition);
+ /**
+ * ges_timeline_object_get_top_effect_position:
+ *
+ * @object: The origin #GESTimelineObject
+ * @effect: The #GESTrackEffect we want to get the top position from
+ *
+ * Gets the top position of an effect.
+ *
+ * Returns: The top position of the effect, -1 if something went wrong.
+ */
+ gint
+ ges_timeline_object_get_top_effect_position (GESTimelineObject *object,
+ GESTrackEffect *effect);
+
C - The GESTrackEffect API:
/**