stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ae3f7857e6ca773d60180cac72a23d29928e3c05
commit ae3f7857e6ca773d60180cac72a23d29928e3c05 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Tue Feb 14 21:06:38 2017 +0100 ecore_evas: add brief docs and since tags for new ecore_evas_shadow_geometry_* These have been missing when introduced during the 1.19 cycle. --- src/lib/ecore_evas/Ecore_Evas.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/lib/ecore_evas/Ecore_Evas.h b/src/lib/ecore_evas/Ecore_Evas.h index 0af4bcc..3d74e6b 100644 --- a/src/lib/ecore_evas/Ecore_Evas.h +++ b/src/lib/ecore_evas/Ecore_Evas.h @@ -2442,8 +2442,19 @@ EAPI Eina_Bool ecore_evas_draw_frame_get(const Ecore_Evas *ee) EINA_DEPRECATED * * Note that the framespace contains both a shadow or glow around the window, * and the window borders (title bar, etc...). + * + * @since 1.19 */ EAPI void ecore_evas_shadow_geometry_set(Ecore_Evas *ee, int x, int y, int w, int h); + +/** + * @brief Get shadow geometry for client-side decorations + * + * Note that the framespace contains both a shadow or glow around the window, + * and the window borders (title bar, etc...). + * + * @since 1.19 + */ EAPI void ecore_evas_shadow_geometry_get(const Ecore_Evas *ee, int *x, int *y, int *w, int *h); /** --