summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_animator.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/efl/interfaces/efl_animator.eo')
-rw-r--r--src/lib/efl/interfaces/efl_animator.eo13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/efl/interfaces/efl_animator.eo b/src/lib/efl/interfaces/efl_animator.eo
new file mode 100644
index 0000000000..b9a32e996a
--- /dev/null
+++ b/src/lib/efl/interfaces/efl_animator.eo
@@ -0,0 +1,13 @@
+import eina_types;
+
+struct Efl.Event.Animator_Tick {
+ update_area: Eina.Rectangle; [[Area of the canvas that will be pushed to screen.]]
+}
+
+interface Efl.Animator {
+ legacy_prefix: null;
+ eo_prefix: efl_animator;
+ events {
+ animator,tick: Efl.Event.Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]]
+ }
+}