barebox/lib/gui/Kconfig
Sascha Hauer 68ad2e4daa gui: IMAGE_RENDERER does not depend on VIDEO
Image renderer may not be particularly useful without framebuffer
support, but technically it does not depend on VIDEO. Fixes:

warning: (CMD_SPLASH) selects IMAGE_RENDERER which has unmet direct dependencies (VIDEO)

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2014-06-05 10:18:34 +02:00

39 lines
441 B
Text

menu "Library gui routines"
config IMAGE_RENDERER
bool
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