-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathKconfig
43 lines (32 loc) · 1.08 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
menu "ThorVG Support Options"
config THORVG_LOG_ENABLED
bool "Enable ThorVG log"
default n
help
Enable ThorVG log.
config THORVG_THREAD_ENABLED
bool "Enable ThorVG threading support"
default y
help
Enable ThorVG threading support. This option can be disabled if ThorVG is only used from one FreeRTOS task.
menu "Loaders Support"
config THORVG_LOTTIE_LOADER_SUPPORT
bool "Enable Lottie loader support"
default y
config THORVG_TVG_LOADER_SUPPORT
bool "Enable tvg loader support"
default y
config THORVG_SVG_LOADER_SUPPORT
bool "Enable svg loader support"
default y
config THORVG_PNG_LOADER_SUPPORT
bool "Enable png loader support"
default n
config THORVG_JPEG_LOADER_SUPPORT
bool "Enable jpeg loader support"
default n
config THORVG_WEBP_LOADER_SUPPORT
bool "Enable webp loader support"
default n
endmenu
endmenu