summaryrefslogtreecommitdiffstats
path: root/lib/gui/Kconfig
blob: 8fd12fb60d12df58610f409a48da579c8862ba31 (plain)
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
menu "Library gui routines           "

config IMAGE_RENDERER
	bool
	depends on VIDEO
	select FILETYPE

if IMAGE_RENDERER

config BMP
	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.

config PICOPNG
	bool "picoPNG"
	help
	  This PNG library only supports RGBA PNG8 but is much smaller
	  in binary size than lodepng.

endchoice

endif

endif

endmenu