aab650f2ef
See https://github.com/thorvg/thorvg/releases/tag/v0.11.0 + Infrastructure Repository folder structure was make it more intuitive and coherent. "thorvg/src/lib" -> "thorvg/src/common" (providing essential common functionalities used internally among the renderer and sub-modules) "thorvg/src/lib" -> "thorvg/src/renderer" (for vector drawing features) + SVG related Fix stroke regression https://github.com/thorvg/thorvg/issues/1670 Support stroke dash offset function https://github.com/thorvg/thorvg/issues/1591#issuecomment-1681319321 Support Focal property in Radial Gradient https://github.com/thorvg/thorvg/issues/1558
11 lines
220 B
C++
11 lines
220 B
C++
#ifndef THORVG_CONFIG_H
|
|
#define THORVG_CONFIG_H
|
|
|
|
#define THORVG_SW_RASTER_SUPPORT
|
|
#define THORVG_SVG_LOADER_SUPPORT
|
|
|
|
// For internal debugging:
|
|
//#define THORVG_LOG_ENABLED
|
|
|
|
#define THORVG_VERSION_STRING "0.11.0"
|
|
#endif
|