diff options
author | Daniel Juyung Seo <seojuyung2@gmail.com> | 2013-10-31 01:04:24 +0900 |
---|---|---|
committer | Daniel Juyung Seo <seojuyung2@gmail.com> | 2013-10-31 01:04:24 +0900 |
commit | 2a1d175c0287a8a2adbf1e67d42337a068c4a01a (patch) | |
tree | a5b23163b63f90ec9018df05d208d4cd5b61634a /src/lib/ecore | |
parent | a1111903e80a054b25310dab13522607d43156cb (diff) |
Ecore_Common.h: fixed documentations.
Diffstat (limited to 'src/lib/ecore')
-rw-r--r-- | src/lib/ecore/Ecore_Common.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/ecore/Ecore_Common.h b/src/lib/ecore/Ecore_Common.h index 98279a757a..83307f2fd5 100644 --- a/src/lib/ecore/Ecore_Common.h +++ b/src/lib/ecore/Ecore_Common.h | |||
@@ -2007,12 +2007,12 @@ EAPI double ecore_animator_pos_map(double pos, Ecore_Pos_Map map, double v1, dou | |||
2007 | * set a custom tick source by setting the source to | 2007 | * set a custom tick source by setting the source to |
2008 | * ECORE_ANIMATOR_SOURCE_CUSTOM and then drive it yourself based on some input | 2008 | * ECORE_ANIMATOR_SOURCE_CUSTOM and then drive it yourself based on some input |
2009 | * tick source (like another application via ipc, some vertical blanking | 2009 | * tick source (like another application via ipc, some vertical blanking |
2010 | * interrupt interrupt etc.) using | 2010 | * interrupt, and etc.) using |
2011 | *ecore_animator_custom_source_tick_begin_callback_set() and | 2011 | * ecore_animator_custom_source_tick_begin_callback_set() and |
2012 | *ecore_animator_custom_source_tick_end_callback_set() to set the functions | 2012 | * ecore_animator_custom_source_tick_end_callback_set() to set the functions |
2013 | * that will be called to start and stop the ticking source, which when it | 2013 | * that will be called to start and stop the ticking source, which when it |
2014 | * gets a "tick" should call ecore_animator_custom_tick() to make the "tick" over 1 | 2014 | * gets a "tick" should call ecore_animator_custom_tick() to make the "tick" |
2015 | * frame. | 2015 | * over 1 frame. |
2016 | */ | 2016 | */ |
2017 | EAPI void ecore_animator_source_set(Ecore_Animator_Source source); | 2017 | EAPI void ecore_animator_source_set(Ecore_Animator_Source source); |
2018 | /** | 2018 | /** |
@@ -2034,7 +2034,7 @@ EAPI Ecore_Animator_Source ecore_animator_source_get(void); | |||
2034 | * The Ecore Animator infrastructure handles tracking if animators are needed | 2034 | * The Ecore Animator infrastructure handles tracking if animators are needed |
2035 | * or not and which ones need to be called and when, but when the tick source | 2035 | * or not and which ones need to be called and when, but when the tick source |
2036 | * is custom, you have to provide a tick source by calling | 2036 | * is custom, you have to provide a tick source by calling |
2037 | *ecore_animator_custom_tick() to indicate a frame tick happened. In order | 2037 | * ecore_animator_custom_tick() to indicate a frame tick happened. In order |
2038 | * to allow the source of ticks to be dynamically enabled or disabled as | 2038 | * to allow the source of ticks to be dynamically enabled or disabled as |
2039 | * needed, the @p func when set is called to enable the tick source to | 2039 | * needed, the @p func when set is called to enable the tick source to |
2040 | * produce tick events that call ecore_animator_custom_tick(). If @p func | 2040 | * produce tick events that call ecore_animator_custom_tick(). If @p func |