aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-06-04 21:06:58 -0600
committerDaniel Eklöf <daniel@ekloef.se>2024-06-12 20:13:43 +0200
commit2ccd1b1099eb32f57a6fb3b91bfc2f8ed3fc1bca (patch)
treea6992b101c1ca950d48aa66a50b31035be558c16 /main.c
parent573c014568a7dd4facbca9cc6b9032996c18338e (diff)
downloadwbg-2ccd1b1099eb32f57a6fb3b91bfc2f8ed3fc1bca.tar.gz
jxl: add initial support for JPEG XL using libjxl
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 9f2d2f5..7a16690 100644
--- a/main.c
+++ b/main.c
@@ -36,6 +36,9 @@
#if defined(WBG_HAVE_SVG)
#include "svg.h"
#endif
+#if defined(WBG_HAVE_JXL)
+ #include "jxl.h"
+#endif
/* Top-level globals */
static struct wl_display *display;
@@ -419,6 +422,10 @@ main(int argc, const char *const *argv)
if (image == NULL)
image = svg_load(fp, image_path);
#endif
+#if defined(WBG_HAVE_JXL)
+ if (image == NULL)
+ image = jxl_load(fp, image_path);
+#endif
if (image == NULL) {
LOG_ERR("%s: failed to load", image_path);
fclose(fp);