2022-01-13 13:54:19 +01:00
|
|
|
#ifndef THORVG_CONFIG_H
|
|
|
|
|
#define THORVG_CONFIG_H
|
|
|
|
|
|
2023-08-08 22:22:11 +02:00
|
|
|
#define THORVG_SW_RASTER_SUPPORT
|
|
|
|
|
#define THORVG_SVG_LOADER_SUPPORT
|
2023-10-13 13:09:33 +02:00
|
|
|
#define THORVG_PNG_LOADER_SUPPORT
|
2024-06-13 23:54:59 +02:00
|
|
|
#ifndef WEB_ENABLED
|
2024-02-07 12:02:57 +01:00
|
|
|
#define THORVG_THREAD_SUPPORT
|
2024-06-13 23:54:59 +02:00
|
|
|
#endif
|
2022-01-13 13:54:19 +01:00
|
|
|
|
2025-03-17 15:10:36 +11:00
|
|
|
// Added conditionally if respective modules are enabled.
|
2024-05-13 12:55:21 +02:00
|
|
|
//#define THORVG_WEBP_LOADER_SUPPORT
|
2025-03-17 15:10:36 +11:00
|
|
|
//#define THORVG_JPG_LOADER_SUPPORT
|
2024-05-13 12:55:21 +02:00
|
|
|
|
2023-09-29 14:58:36 +02:00
|
|
|
// For internal debugging:
|
|
|
|
|
//#define THORVG_LOG_ENABLED
|
|
|
|
|
|
2025-04-06 14:57:10 +02:00
|
|
|
#define THORVG_VERSION_STRING "0.15.12"
|
2022-01-13 13:54:19 +01:00
|
|
|
#endif
|