summaryrefslogtreecommitdiffstats
path: root/rules/sdl2-image.in
blob: 3fde58154d0b582a4430c8a36ec974a78bdc7bd4 (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
## SECTION=multimedia_sdl

menuconfig SDL2_IMAGE
	tristate
	select SDL2
	prompt "SDL2 image                    "
	select LIBPNG	if SDL2_IMAGE_PNG
	select LIBJPEG	if SDL2_IMAGE_JPG
	help
	  This is a simple library to load images of various
	  formats as SDL surfaces. This library currently supports
	  BMP, PPM, PCX, GIF, JPEG, PNG, TIFF, and XPM formats.

if SDL2_IMAGE

config SDL2_IMAGE_BMP
	bool "bmp support"

config SDL2_IMAGE_GIF
	bool "gif support"

config SDL2_IMAGE_JPG
	bool "jpeg support"

config SDL2_IMAGE_LBM
	bool "lbm support"

config SDL2_IMAGE_PCX
	bool "pcx support"

config SDL2_IMAGE_PNG
	bool "png support"

config SDL2_IMAGE_PNM
	bool "pnm support"

config SDL2_IMAGE_TGA
	bool "tga support"

config SDL2_IMAGE_TIF
	bool "tiff support"

config SDL2_IMAGE_XCF
	bool "xcf support"

config SDL2_IMAGE_XPM
	bool "xpm support"

config SDL2_IMAGE_XV
	bool "xv support"

endif