From 39d599e75e3ea18f312b77ce5b1e2ed0c019649b Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Thu, 22 Jul 2021 13:00:59 +0900 Subject: [PATCH] apis: promote beta apis to the official ones. 3 api candidates has been verified since it's tagged in beta, we confirm that they are useful for tvg usages. Here list shows the candidates apis: @API Addition: Matrix Paint::transform() noexcept; CompositeMethod Paint::composite(const Paint** target) const noexcept; Result SwCanvas::mempool(MempoolPolicy policy) noexcept; --- inc/thorvg.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/inc/thorvg.h b/inc/thorvg.h index b48d0f6..20ca52c 100644 --- a/inc/thorvg.h +++ b/inc/thorvg.h @@ -247,7 +247,7 @@ public: * * @retval The augmented transformation matrix. * - * @BETA_API + * @since 0.4 */ Matrix transform() noexcept; @@ -1186,8 +1186,7 @@ public: /** * @brief Enumeration specifying the methods of Memory Pool behavior policy. - * - * @BETA_API + * @since 0.4 */ enum MempoolPolicy { @@ -1237,7 +1236,7 @@ public: * * @warning It's not allowed after pushing any paints. * - * @BETA_API + * @since 0.4 */ Result mempool(MempoolPolicy policy) noexcept; -- 2.7.4