summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_animator.eo
blob: ac7e86ba28a0c92b3588395df05f2913be415798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import eina_types;

struct Efl.Event.Animator_Tick {
   [[EFL event animator tick data structure]]
   update_area: Eina.Rect; [[Area of the canvas that will be pushed to screen.]]
}

interface Efl.Animator {
   [[Efl animator interface]]
   eo_prefix: efl_animator;
   event_prefix: efl;
   events {
      animator,tick: Efl.Event.Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]]
   }
}