summaryrefslogtreecommitdiffstats
path: root/thirdparty
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-13 12:55:21 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-13 13:01:34 +0200
commit831ebda80692e66fd1c0e049f105ed525316fad9 (patch)
tree571f539f2f49d750d292859eaf12b8b7be64790a /thirdparty
parentc6f1f614bbab9334675026fe21f5af4951b9c890 (diff)
downloadredot-engine-831ebda80692e66fd1c0e049f105ed525316fad9.tar.gz
thorvg: Disable webp loader if corresponding module is disabled
Fixes #91873.
Diffstat (limited to 'thirdparty')
-rw-r--r--thirdparty/thorvg/inc/config.h4
-rwxr-xr-xthirdparty/thorvg/update-thorvg.sh4
2 files changed, 6 insertions, 2 deletions
diff --git a/thirdparty/thorvg/inc/config.h b/thirdparty/thorvg/inc/config.h
index f271b52faf..3ae166cf22 100644
--- a/thirdparty/thorvg/inc/config.h
+++ b/thirdparty/thorvg/inc/config.h
@@ -5,9 +5,11 @@
#define THORVG_SVG_LOADER_SUPPORT
#define THORVG_PNG_LOADER_SUPPORT
#define THORVG_JPG_LOADER_SUPPORT
-#define THORVG_WEBP_LOADER_SUPPORT
#define THORVG_THREAD_SUPPORT
+// Added conditionally if webp module is enabled.
+//#define THORVG_WEBP_LOADER_SUPPORT
+
// For internal debugging:
//#define THORVG_LOG_ENABLED
diff --git a/thirdparty/thorvg/update-thorvg.sh b/thirdparty/thorvg/update-thorvg.sh
index 23604afbcd..796060d3fb 100755
--- a/thirdparty/thorvg/update-thorvg.sh
+++ b/thirdparty/thorvg/update-thorvg.sh
@@ -38,9 +38,11 @@ cat << EOF > ../inc/config.h
#define THORVG_SVG_LOADER_SUPPORT
#define THORVG_PNG_LOADER_SUPPORT
#define THORVG_JPG_LOADER_SUPPORT
-#define THORVG_WEBP_LOADER_SUPPORT
#define THORVG_THREAD_SUPPORT
+// Added conditionally if webp module is enabled.
+//#define THORVG_WEBP_LOADER_SUPPORT
+
// For internal debugging:
//#define THORVG_LOG_ENABLED