summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-09-12 15:42:49 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-09-12 17:23:38 +0200
commitf65c991d410bc5e04cf0798618f94a0627f33057 (patch)
tree981c307335366d201e870fa75908980c34d410e1 /lib/Kconfig
parent1f16f058e4b7aad83c8d9575e1fc36a618eed4e8 (diff)
downloadbarebox-f65c991d410bc5e04cf0798618f94a0627f33057.tar.gz
barebox-f65c991d410bc5e04cf0798618f94a0627f33057.tar.xz
png: add picoPNG lib support
This is an alternative to LodePNG take from http://forge.voodooprojects.org/ which is base on picoPNG C++ wrote by Lode Vandevenne. The same author as LodePNG. PicoPNG only support RGBA PNG8 The source code of picopng.c was just adapted to be compliant with C89 and drop the internal ZLIB support. Coding style untouched. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 59f92c24fb..8b73733735 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -62,6 +62,12 @@ config 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