Merge commit 'origin/master' into gallium-0.2
[mesa.git] / src / gallium / drivers / softpipe / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 softpipe = env.ConvenienceLibrary(
6 target = 'softpipe',
7 source = [
8 'sp_fs_exec.c',
9 'sp_fs_sse.c',
10 'sp_fs_llvm.c',
11 'sp_clear.c',
12 'sp_context.c',
13 'sp_draw_arrays.c',
14 'sp_flush.c',
15 'sp_prim_setup.c',
16 'sp_prim_vbuf.c',
17 'sp_setup.c',
18 'sp_quad_alpha_test.c',
19 'sp_quad_blend.c',
20 'sp_quad.c',
21 'sp_quad_colormask.c',
22 'sp_quad_coverage.c',
23 'sp_quad_depth_test.c',
24 'sp_quad_earlyz.c',
25 'sp_quad_fs.c',
26 'sp_quad_occlusion.c',
27 'sp_quad_output.c',
28 'sp_quad_stencil.c',
29 'sp_quad_stipple.c',
30 'sp_query.c',
31 'sp_screen.c',
32 'sp_state_blend.c',
33 'sp_state_clip.c',
34 'sp_state_derived.c',
35 'sp_state_fs.c',
36 'sp_state_rasterizer.c',
37 'sp_state_sampler.c',
38 'sp_state_surface.c',
39 'sp_state_vertex.c',
40 'sp_surface.c',
41 'sp_tex_sample.c',
42 'sp_texture.c',
43 'sp_tile_cache.c',
44 ])
45
46 Export('softpipe')