summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_core_animator.eo
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2016-03-10 13:03:02 -0800
committerCedric BAIL <cedric@osg.samsung.com>2016-03-10 13:14:13 -0800
commit685681c8643a143a6ec708d56fc03366b66f80a5 (patch)
tree31037e40478d33c6503662a9be2e90ddb76ed1d6 /src/lib/efl/interfaces/efl_core_animator.eo
parent9646f8e9ecf9a148f0811a7d01398d97bf50d168 (diff)
downloadefl-685681c8643a143a6ec708d56fc03366b66f80a5.tar.gz
efl: rename efl.core.animator to efl.animator.
It has been decided that we would not use any namespace for interface and they will sit in efl main namespace. This patch doesn't correct the naming of the event has we don't have a prefix for event. We do still have EFL_ANIMATOR_EVENT_ANIMATOR_TICK, instead of a nicer EFL_EVENT_ANIMATOR_TICK.
Diffstat (limited to 'src/lib/efl/interfaces/efl_core_animator.eo')
-rw-r--r--src/lib/efl/interfaces/efl_core_animator.eo13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/efl/interfaces/efl_core_animator.eo b/src/lib/efl/interfaces/efl_core_animator.eo
deleted file mode 100644
index f652ec8a4f..0000000000
--- a/src/lib/efl/interfaces/efl_core_animator.eo
+++ /dev/null
@@ -1,13 +0,0 @@
-import eina_types;
-
-struct Efl.Core.Event.Animator_Tick {
- update_area: Eina.Rectangle; [[Area of the canvas that will be pushed to screen.]]
-}
-
-interface Efl.Core.Animator {
- legacy_prefix: null;
- eo_prefix: efl_animator;
- events {
- animator,tick: Efl.Core.Event.Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]]
- }
-}