summaryrefslogtreecommitdiff
path: root/ges/generated/GES/BaseEffect.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ges/generated/GES/BaseEffect.cs')
-rw-r--r--ges/generated/GES/BaseEffect.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/ges/generated/GES/BaseEffect.cs b/ges/generated/GES/BaseEffect.cs
index 53dd7fd..d3bf948 100644
--- a/ges/generated/GES/BaseEffect.cs
+++ b/ges/generated/GES/BaseEffect.cs
@@ -53,6 +53,28 @@ namespace GES {
}
}
+ [DllImport("ges-1.0", CallingConvention = CallingConvention.Cdecl)]
+ static extern bool ges_base_effect_is_time_effect(IntPtr raw);
+
+ public bool IsTimeEffect {
+ get {
+ bool raw_ret = ges_base_effect_is_time_effect(Handle);
+ bool ret = raw_ret;
+ return ret;
+ }
+ }
+
+ [DllImport("ges-1.0", CallingConvention = CallingConvention.Cdecl)]
+ static extern bool ges_base_effect_register_time_property(IntPtr raw, IntPtr child_property_name);
+
+ public bool RegisterTimeProperty(string child_property_name) {
+ IntPtr native_child_property_name = GLib.Marshaller.StringToPtrGStrdup (child_property_name);
+ bool raw_ret = ges_base_effect_register_time_property(Handle, native_child_property_name);
+ bool ret = raw_ret;
+ GLib.Marshaller.Free (native_child_property_name);
+ return ret;
+ }
+
static BaseEffect ()
{