summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig25
1 files changed, 23 insertions, 2 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 417c81ee5a..59f92c24fb 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -43,8 +43,29 @@ config IMAGE_RENDERER
depends on VIDEO
select FILETYPE
+if IMAGE_RENDERER
+
config BMP
- bool
- depends on IMAGE_RENDERER
+ bool "bmp"
+
+config PNG
+ bool "png"
+ select ZLIB
+
+if PNG
+
+choice
+ prompt "PNG Lib"
+
+config LODEPNG
+ bool "lodePNG"
+ help
+ This PNG library supports most PNG formats.
+
+endchoice
+
+endif
+
+endif
endmenu