diff options
author | JunsuChoi <jsuya.choi@samsung.com> | 2020-08-14 19:53:07 +0900 |
---|---|---|
committer | Hermet Park <chuneon.park@samsung.com> | 2020-08-14 19:53:09 +0900 |
commit | 1f0c99960e3cfaf6412b81424c82e3158b2d2f93 (patch) | |
tree | 0985288a4fe0138fbeae73a1a70bfc88098d8550 /src/lib/evas/canvas/evas_vg_private.h | |
parent | 87d959224b85cba29ba003419dc3cb6cf413d2fd (diff) |
evas_vg_cache: Add sector_list_get
Summary: Add an API that if there is sector data in animation, returns a list of it.
Test Plan: N/A
Reviewers: Hermet, kimcinoo, herb
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D11929
Diffstat (limited to 'src/lib/evas/canvas/evas_vg_private.h')
-rw-r--r-- | src/lib/evas/canvas/evas_vg_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/evas/canvas/evas_vg_private.h b/src/lib/evas/canvas/evas_vg_private.h index aba4e9d27b..5ad5a7843f 100644 --- a/src/lib/evas/canvas/evas_vg_private.h +++ b/src/lib/evas/canvas/evas_vg_private.h | |||
@@ -143,6 +143,7 @@ Eina_Bool evas_cache_vg_entry_file_save(Vg_Cache_Entry *vg_ent | |||
143 | double evas_cache_vg_anim_duration_get(const Vg_Cache_Entry *vg_entry); | 143 | double evas_cache_vg_anim_duration_get(const Vg_Cache_Entry *vg_entry); |
144 | Eina_Bool evas_cache_vg_anim_sector_set(const Vg_Cache_Entry* vg_entry, const char *name, int startframe, int endframe); | 144 | Eina_Bool evas_cache_vg_anim_sector_set(const Vg_Cache_Entry* vg_entry, const char *name, int startframe, int endframe); |
145 | Eina_Bool evas_cache_vg_anim_sector_get(const Vg_Cache_Entry* vg_entry, const char *name, int* startframe, int* endframe); | 145 | Eina_Bool evas_cache_vg_anim_sector_get(const Vg_Cache_Entry* vg_entry, const char *name, int* startframe, int* endframe); |
146 | Eina_Inarray* evas_cache_vg_anim_sector_list_get(const Vg_Cache_Entry* vg_entry); | ||
146 | unsigned int evas_cache_vg_anim_frame_count_get(const Vg_Cache_Entry *vg_entry); | 147 | unsigned int evas_cache_vg_anim_frame_count_get(const Vg_Cache_Entry *vg_entry); |
147 | Eina_Size2D evas_cache_vg_entry_default_size_get(const Vg_Cache_Entry *vg_entry); | 148 | Eina_Size2D evas_cache_vg_entry_default_size_get(const Vg_Cache_Entry *vg_entry); |
148 | void * evas_cache_vg_surface_key_get(Efl_Canvas_Vg_Node *root, int w, int h, int frame_idx); | 149 | void * evas_cache_vg_surface_key_get(Efl_Canvas_Vg_Node *root, int w, int h, int frame_idx); |