From 685681c8643a143a6ec708d56fc03366b66f80a5 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Thu, 10 Mar 2016 13:03:02 -0800 Subject: 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. --- src/lib/efl/interfaces/efl_animator.eo | 13 +++++++++++++ src/lib/efl/interfaces/efl_core_animator.eo | 13 ------------- src/lib/efl/interfaces/efl_interfaces_main.c | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) create mode 100644 src/lib/efl/interfaces/efl_animator.eo delete mode 100644 src/lib/efl/interfaces/efl_core_animator.eo (limited to 'src/lib/efl/interfaces') 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.]] + } +} 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.]] - } -} diff --git a/src/lib/efl/interfaces/efl_interfaces_main.c b/src/lib/efl/interfaces/efl_interfaces_main.c index ff090cbcfc..cd962dd86f 100644 --- a/src/lib/efl/interfaces/efl_interfaces_main.c +++ b/src/lib/efl/interfaces/efl_interfaces_main.c @@ -29,4 +29,4 @@ EAPI const Eo_Event_Description _EFL_GFX_PATH_CHANGED = EO_EVENT_DESCRIPTION("Graphics path changed"); #include "interfaces/efl_model_base.eo.c" -#include "interfaces/efl_core_animator.eo.c" +#include "interfaces/efl_animator.eo.c" -- cgit v1.2.1