summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorHermet Park <hermetpark@gmail.com>2019-08-06 20:47:07 +0900
committerHermet Park <hermetpark@gmail.com>2019-08-06 20:57:46 +0900
commitee25c66efffbb0adaff17119a8161ca9daa52eb8 (patch)
tree117c1ec9a0f34be12aa1fcc21f14ebe6bf444519 /meson_options.txt
parent97510fc5714e899f0681b79acb0cead7527bf42b (diff)
downloadefl-ee25c66efffbb0adaff17119a8161ca9daa52eb8.tar.gz
build: Seprate same svg extension loaders between image and vector.
Currently, vector and image support svg format via different rountine. Our vector loader implemenst on its own drawing mechanism for svg, but in case of image loader, it depends on rsvg library. By Comparing both, our vector svg is winner at performance wise. we can remove rsvg routine later. For now, these two loader names are conflicted, we should separate their names with svg and rsvg.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index c51e12bd18..8f5deb17a5 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -201,8 +201,8 @@ option('evas-modules',
option('evas-loaders-disabler',
type : 'array',
- description : 'List of modular image loaders to disable in efl',
- choices : ['gst', 'pdf', 'ps', 'raw', 'svg', 'xcf', 'bmp', 'dds', 'eet', 'generic', 'gif', 'ico', 'jp2k', 'jpeg', 'pmaps', 'png', 'psd', 'tga', 'tgv', 'tiff', 'wbmp', 'webp', 'xpm', 'json'],
+ description : 'List of modular image/vector loaders to disable in efl',
+ choices : ['gst', 'pdf', 'ps', 'raw', 'svg', 'rsvg', 'xcf', 'bmp', 'dds', 'eet', 'generic', 'gif', 'ico', 'jp2k', 'jpeg', 'pmaps', 'png', 'psd', 'tga', 'tgv', 'tiff', 'wbmp', 'webp', 'xpm', 'json'],
value : ['webp', 'json']
)