From 7e5209e27b899d0df5e98be920322c0c49fc5d00 Mon Sep 17 00:00:00 2001 From: Woochanlee Date: Thu, 21 May 2020 13:51:08 +0900 Subject: [PATCH] ecore_evas : Add deprecated Tags and macro for deprecated APIs. Deprecated below APIs. ecore_evas_comp_sync_get/set ecore_evas_app_comp_sync_get/set Change-Id: Iebd2cd4cdfb571433b0f7da155b8ab1d5e2bda9a --- src/lib/ecore_evas/Ecore_Evas.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/lib/ecore_evas/Ecore_Evas.h b/src/lib/ecore_evas/Ecore_Evas.h index 976f8fd..d7e2b2f 100755 --- a/src/lib/ecore_evas/Ecore_Evas.h +++ b/src/lib/ecore_evas/Ecore_Evas.h @@ -210,21 +210,21 @@ EAPI int ecore_evas_shutdown(void); * Turns on client+server synchronized rendering in X11. App comp sync * is disabled by default, but can be turned on optionally. * - * @warning This is a deprecated API. DO NOT USE. - * * @param do_sync True to enable comp syncing, False to disable + * + * @deprecated Deprecated since 6.0 DO NOT USE. */ -EAPI void ecore_evas_app_comp_sync_set(Eina_Bool do_sync); +EINA_DEPRECATED EAPI void ecore_evas_app_comp_sync_set(Eina_Bool do_sync); /** * @brief Get the compositing synchronization state * * @return True if app comp sync is enabled. * - * @warning This is a deprecated API. DO NOT USE. + * @deprecated Deprecated since 6.0 DO NOT USE. * */ -EAPI Eina_Bool ecore_evas_app_comp_sync_get(void); +EINA_DEPRECATED EAPI Eina_Bool ecore_evas_app_comp_sync_get(void); /** * @brief Returns a list of supported engine names. @@ -2948,9 +2948,9 @@ EAPI void ecore_evas_manual_render(Ecore_Evas *ee); * set via the ECORE_EVAS_COMP_NOSYNC / ECORE_EVAS_COMP_SYNC * environmental variables. * - * @warning This is a deprecated API. DO NOT USE. + * @deprecated Deprecated since 6.0 DO NOT USE. */ -EAPI void ecore_evas_comp_sync_set(Ecore_Evas *ee, Eina_Bool do_sync); +EINA_DEPRECATED EAPI void ecore_evas_comp_sync_set(Ecore_Evas *ee, Eina_Bool do_sync); /** * @brief Gets the comp sync state @@ -2958,9 +2958,9 @@ EAPI void ecore_evas_comp_sync_set(Ecore_Evas *ee, Eina_Bool do_sync); * @param ee An @c Ecore_Evas handle * @return True if composition synchronization is enabled, False otherwise * - * @warning This is a deprecated API. DO NOT USE. + * @deprecated Deprecated since 6.0 DO NOT USE. */ -EAPI Eina_Bool ecore_evas_comp_sync_get(const Ecore_Evas *ee); +EINA_DEPRECATED EAPI Eina_Bool ecore_evas_comp_sync_get(const Ecore_Evas *ee); /** * @brief Gets geometry of screen associated with this Ecore_Evas. -- 2.7.4