From: Mira Grudzinska Date: Thu, 16 Dec 2021 19:13:36 +0000 (+0100) Subject: capi: missing arg description added X-Git-Tag: accepted/tizen/unified/20230220.174433~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=973dfc7dd64db59ce412c79426aee4521db7821a;p=platform%2Fcore%2Fgraphics%2Ftizenvg.git capi: missing arg description added Change-Id: If9b6a81ac27a0f7f7b52f791e0c6205bf014d9df --- diff --git a/src/bindings/capi/thorvg_capi.h b/src/bindings/capi/thorvg_capi.h index 404f1ff..bd026de 100644 --- a/src/bindings/capi/thorvg_capi.h +++ b/src/bindings/capi/thorvg_capi.h @@ -1823,6 +1823,7 @@ TVG_EXPORT Tvg_Result tvg_picture_load_data(Tvg_Paint* paint, const char *data, * The picture content is resized while keeping the default size aspect ratio. * The scaling factor is established for each of dimensions and the smaller value is applied to both of them. * +* \param[in] paint A Tvg_Paint pointer to the picture object. * \param[in] w A new width of the image in pixels. * \param[in] h A new height of the image in pixels. * @@ -1837,6 +1838,7 @@ TVG_EXPORT Tvg_Result tvg_picture_set_size(Tvg_Paint* paint, float w, float h); /*! * \brief Gets the size of the loaded picture. * +* \param[in] paint A Tvg_Paint pointer to the picture object. * \param[out] w A width of the image in pixels. * \param[out] h A height of the image in pixels. *