blob: 37f5366262bb276e808d5ed212f29720bbcb69a7 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
config BR2_PACKAGE_SDL_IMAGE
bool "SDL_image"
depends on BR2_PACKAGE_SDL
default n
help
SDL_image is an image file loading library. It loads images
as SDL surfaces, and supports the following formats:
BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, XCF, XPM, XV.
http://www.libsdl.org/projects/SDL_image/
menu "SDL_image file format support"
depends on BR2_PACKAGE_SDL_IMAGE
config BR2_PACKAGE_SDL_IMAGE_BMP
bool "enable BMP file format support"
default y
config BR2_PACKAGE_SDL_IMAGE_GIF
bool "enable GIF file format support"
default n
config BR2_PACKAGE_SDL_IMAGE_JPEG
bool "enable JPEG file format support"
select BR2_PACKAGE_JPEG
default n
config BR2_PACKAGE_SDL_IMAGE_LBM
bool "enable LBM file format support"
default n
config BR2_PACKAGE_SDL_IMAGE_PCX
bool "enable PCX file format support"
default n
config BR2_PACKAGE_SDL_IMAGE_PNG
bool "enable PNG file format support"
select BR2_PACKAGE_LIBPNG
default n
config BR2_PACKAGE_SDL_IMAGE_PNM
bool "enable PNM file format support"
default n
config BR2_PACKAGE_SDL_IMAGE_TARGA
bool "enable TARGA format support"
default n
config BR2_PACKAGE_SDL_IMAGE_TIFF
bool "enable TIFF file format support"
select BR2_PACKAGE_TIFF
default n
config BR2_PACKAGE_SDL_IMAGE_XCF
bool "enable XCF file format support"
default n
config BR2_PACKAGE_SDL_IMAGE_XPM
bool "enable XPM format support"
default n
config BR2_PACKAGE_SDL_IMAGE_XV
bool "enable XV file format support"
default n
endmenu
|