config.h 444 B

12345678910111213141516171819
  1. #ifndef THORVG_CONFIG_H
  2. #define THORVG_CONFIG_H
  3. #define THORVG_SW_RASTER_SUPPORT
  4. #define THORVG_SVG_LOADER_SUPPORT
  5. #define THORVG_PNG_LOADER_SUPPORT
  6. #ifndef WEB_ENABLED
  7. #define THORVG_THREAD_SUPPORT
  8. #endif
  9. // Added conditionally if respective modules are enabled.
  10. //#define THORVG_WEBP_LOADER_SUPPORT
  11. //#define THORVG_JPG_LOADER_SUPPORT
  12. // For internal debugging:
  13. //#define THORVG_LOG_ENABLED
  14. #define THORVG_VERSION_STRING "0.15.13"
  15. #endif