From 9124342f285aeee715dd23442ae27b275425ca9e Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Fri, 4 Jul 2025 12:43:41 +0900 Subject: [PATCH] capi: clean++ --- src/bindings/capi/thorvg_capi.h | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/src/bindings/capi/thorvg_capi.h b/src/bindings/capi/thorvg_capi.h index 9a3e67d0..def6834c 100644 --- a/src/bindings/capi/thorvg_capi.h +++ b/src/bindings/capi/thorvg_capi.h @@ -1,20 +1,3 @@ -/*! -* @file thorvg_capi.h -* -* @brief The module provides C bindings for the ThorVG library. -* Please refer to src/examples/Capi.cpp to find the thorvg_capi usage examples. -* -* The thorvg_capi module allows to implement the ThorVG client and provides -* the following functionalities: -* - drawing shapes: line, curve, polygon, circle, user-defined, ... -* - filling: solid, linear and radial gradient -* - scene graph & affine transformation (translation, rotation, scale, ...) -* - stroking: width, join, cap, dash -* - composition: blending, masking, path clipping -* - pictures: SVG, PNG, JPG, bitmap -* -*/ - #ifndef __THORVG_CAPI_H__ #define __THORVG_CAPI_H__ @@ -185,21 +168,6 @@ typedef enum { } Tvg_Blend_Method; -/** - * @see Tvg_Type - * @deprecated - */ -typedef enum { - TVG_IDENTIFIER_UNDEF = 0, ///< Undefined type. - TVG_IDENTIFIER_SHAPE, ///< A shape type paint. - TVG_IDENTIFIER_SCENE, ///< A scene type paint. - TVG_IDENTIFIER_PICTURE, ///< A picture type paint. - TVG_IDENTIFIER_LINEAR_GRAD, ///< A linear gradient type. - TVG_IDENTIFIER_RADIAL_GRAD, ///< A radial gradient type. - TVG_IDENTIFIER_TEXT ///< A text type paint. -} Tvg_Identifier; - - /** * @brief Enumeration indicating the ThorVG object type value. *