aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2023-07-24 00:09:16 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2023-12-15 23:06:16 -0600
commit51de02c51f06bda67c40474d148e21d4717ba086 (patch)
treec6f035f4b8f2e085082b24b5d1f2554fa5418b65 /main.c
parent423f7dc6990b1cb5afde95f8383c44b1a4dce16a (diff)
downloadwbg-51de02c51f06bda67c40474d148e21d4717ba086.tar.gz
svg: initial support for SVG images, using nanosvg
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.c b/main.c
index 19a9711..ac0b743 100644
--- a/main.c
+++ b/main.c
@@ -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);