99b450762b
We were compiling `src/loaders/external_png` but using the header from `src/loaders/png`, leading to `-Wodr` warnings. Remove unused bundled lodepng code since we use `external_png` (libpng). Whitespace changes are from upstream, will attempt PR'ing a cleanup there for future updates.
17 lines
314 B
C++
17 lines
314 B
C++
#ifndef THORVG_CONFIG_H
|
|
#define THORVG_CONFIG_H
|
|
|
|
#define THORVG_SW_RASTER_SUPPORT 1
|
|
|
|
#define THORVG_SVG_LOADER_SUPPORT 1
|
|
|
|
#define THORVG_PNG_LOADER_SUPPORT 1
|
|
|
|
#define THORVG_TVG_LOADER_SUPPORT 1
|
|
|
|
#define THORVG_TVG_SAVER_SUPPORT 1
|
|
|
|
#define THORVG_JPG_LOADER_SUPPORT 1
|
|
|
|
#define THORVG_VERSION_STRING "0.8.2"
|
|
#endif
|