summaryrefslogtreecommitdiffstats
path: root/rules/sdl_image.in
blob: 9bb18502cb1f5fd56679931045373101af6432b4 (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 SDL_IMAGE
	tristate
	select SDL
	prompt "SDL image                     "
	select LIBPNG	if SDL_IMAGE__PNG
	select LIBJPEG	if SDL_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 SDL_IMAGE

config SDL_IMAGE__BMP
	bool "bmp support"

config SDL_IMAGE__GIF
	bool "gif support"

config SDL_IMAGE__JPG
	bool "jpeg support"

config SDL_IMAGE__LBM
	bool "lbm support"

config SDL_IMAGE__PCX
	bool "pcx support"

config SDL_IMAGE__PNG
	bool "png support"

config SDL_IMAGE__PNM
	bool "pnm support"

config SDL_IMAGE__TGA
	bool "tga support"

config SDL_IMAGE__TIF
	bool "tiff support"

config SDL_IMAGE__XCF
	bool "xcf support"

config SDL_IMAGE__XPM
	bool "xpm support"

config SDL_IMAGE__XV
	bool "xv support"

endif