ecore_evas : Add deprecated Tags and macro for deprecated APIs.
authorWoochanlee <wc0917.lee@samsung.com>
Thu, 21 May 2020 04:51:08 +0000 (13:51 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Sun, 24 May 2020 21:37:13 +0000 (06:37 +0900)
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

index 976f8fd..d7e2b2f 100755 (executable)
@@ -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.