diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-07-24 00:09:16 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-12-15 23:06:16 -0600 |
commit | 51de02c51f06bda67c40474d148e21d4717ba086 (patch) | |
tree | c6f035f4b8f2e085082b24b5d1f2554fa5418b65 /main.c | |
parent | 423f7dc6990b1cb5afde95f8383c44b1a4dce16a (diff) | |
download | wbg-51de02c51f06bda67c40474d148e21d4717ba086.tar.gz |
svg: initial support for SVG images, using nanosvg
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -33,6 +33,9 @@ #if defined(WBG_HAVE_WEBP) #include "webp.h" #endif +#if defined(WBG_HAVE_SVG) + #include "svg.h" +#endif /* Top-level globals */ static struct wl_display *display; @@ -412,6 +415,10 @@ main(int argc, const char *const *argv) if (image == NULL) image = webp_load(fp, image_path); #endif +#if defined(WBG_HAVE_SVG) + if (image == NULL) + image = svg_load(fp, image_path); +#endif if (image == NULL) { fprintf(stderr, "error: %s: failed to load\n", image_path); fclose(fp); |