From 262303c8b8a5984c89b5e7f44fc11d6b8fcf32d1 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Sat, 7 Jan 2023 01:13:25 +0900 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 566a4db6..fb530d1a 100644 --- a/README.md +++ b/README.md @@ -364,13 +364,15 @@ Our main development APIs are written in C++, but ThorVG also provides API bindi

## Dependencies -The ThorVG core has no dependencies. However, ThorVG has optional feature extensions. Some of these have dependencies as follows: +ThorVG core has no dependencies. However, ThorVG has optional feature extensions. Some of these have dependencies as follows: -* GL renderer: EGL, GLESv2 -* PNG support: [libpng](https://github.com/glennrp/libpng) -* JPG support: [turbojpeg](https://github.com/libjpeg-turbo/libjpeg-turbo) +* GL renderer: [EGL](https://www.khronos.org/egl), [GLESv2](https://www.khronos.org/opengles/) +* External PNG support: [libpng](https://github.com/glennrp/libpng) +* External JPG support: [turbojpeg](https://github.com/libjpeg-turbo/libjpeg-turbo) * Examples: [EFL](https://www.enlightenment.org/about-efl.md) +Note that ThorVG supports both static/external image loaders. If your system has no external library, you can choose static loader since it doesn't have dependency. + [Back to contents](#contents)