From cdac27b1b548b87775eab238329fc78b2edeafa9 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Mon, 4 Sep 2023 12:49:24 +0900 Subject: [PATCH] apis: promote beta apis to official status - Result Shape::strokeMiterlimit(float miterlimit) - float Shape::strokeMiterlimit() const --- inc/thorvg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/thorvg.h b/inc/thorvg.h index 0c5ad62b..7e3b2cf2 100644 --- a/inc/thorvg.h +++ b/inc/thorvg.h @@ -1040,7 +1040,7 @@ public: * * @return Result::Success when succeed, Result::NonSupport unsupported value, Result::FailedAllocation otherwise. * - * @BETA_API + * @since 0.11 */ Result strokeMiterlimit(float miterlimit) noexcept; @@ -1194,7 +1194,7 @@ public: * * @return The stroke miterlimit value when succeed, 4 if no stroke was set. * - * @BETA_API + * @since 0.11 */ float strokeMiterlimit() const noexcept;