Merge branch 'gallium-conditional-rendering'
[mesa.git] / progs / tests / SConscript
1 Import('*')
2
3 linux_progs = [
4 'api_speed',
5 ]
6
7 glx_progs = [
8 'auxbuffer',
9 'getprocaddress',
10 'jkrahntest',
11 'sharedtex',
12 'texcompress2',
13 'texobjshare',
14 ]
15
16 mesa_progs = [
17 'debugger',
18 ]
19
20 progs = [
21 'afsmultiarb',
22 'antialias',
23 'arbfpspec',
24 'arbfptest1',
25 'arbfptexture',
26 'arbfptrig',
27 'arbnpot',
28 'arbnpot-mipmap',
29 'arbvptest1',
30 'arbvptest3',
31 'arbvptorus',
32 'arbvpwarpmesh',
33 'arraytexture',
34 'blendminmax',
35 'blendsquare',
36 'blendxor',
37 'blitfb',
38 'bufferobj',
39 'bug_3050',
40 'bug_3101',
41 'bug_3195',
42 'bug_texstore_i8',
43 'calibrate_rast',
44 'condrender',
45 'copypixrate',
46 'crossbar',
47 'cva',
48 'drawbuffers',
49 'drawbuffers2',
50 'exactrast',
51 'ext422square',
52 'fbotest1',
53 'fbotest2',
54 'fillrate',
55 'floattex',
56 'fog',
57 'fogcoord',
58 'fptest1',
59 'fptexture',
60 'getteximage',
61 'glutfx',
62 'interleave',
63 'invert',
64 'lineclip',
65 'manytex',
66 'mapbufrange',
67 'mapvbo',
68 'minmag',
69 'mipgen',
70 'mipmap_comp',
71 'mipmap_comp_tests',
72 'mipmap_limits',
73 'mipmap_view',
74 'multipal',
75 'multitexarray',
76 'multiwindow',
77 'no_s3tc',
78 'packedpixels',
79 'pbo',
80 'persp_hint',
81 'prog_parameter',
82 'quads',
83 'random',
84 'readrate',
85 'rubberband',
86 'scissor',
87 'scissor-viewport',
88 'seccolor',
89 'shader_api',
90 'stencil_twoside',
91 'stencil_wrap',
92 'stencilwrap',
93 'streaming_rect',
94 'subtex',
95 'subtexrate',
96 'tex1d',
97 'texcmp',
98 'texcompress2',
99 'texcompsub',
100 'texdown',
101 'texfilt',
102 'texgenmix',
103 'texline',
104 'texobj',
105 'texrect',
106 'texwrap',
107 'unfilledclip',
108 'vao-01',
109 'vao-02',
110 'vparray',
111 'vpeval',
112 'vptest1',
113 'vptest2',
114 'vptest3',
115 'vptorus',
116 'vpwarpmesh',
117 'yuvrect',
118 'yuvsquare',
119 'zcomp',
120 'zdrawpix',
121 'zreaddraw',
122 ]
123
124 for prog in progs:
125 progs_env.Program(
126 target = prog,
127 source = prog + '.c',
128 )