softpipe: Dummy fence functions.
[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_buffer.c',
11 'sp_clear.c',
12 'sp_context.c',
13 'sp_draw_arrays.c',
14 'sp_fence.c',
15 'sp_flush.c',
16 'sp_prim_vbuf.c',
17 'sp_setup.c',
18 'sp_quad_blend.c',
19 'sp_quad_pipe.c',
20 'sp_quad_depth_test.c',
21 'sp_quad_fs.c',
22 'sp_quad_stipple.c',
23 'sp_query.c',
24 'sp_screen.c',
25 'sp_state_blend.c',
26 'sp_state_clip.c',
27 'sp_state_derived.c',
28 'sp_state_fs.c',
29 'sp_state_rasterizer.c',
30 'sp_state_sampler.c',
31 'sp_state_surface.c',
32 'sp_state_vertex.c',
33 'sp_surface.c',
34 'sp_tex_sample.c',
35 'sp_tex_tile_cache.c',
36 'sp_texture.c',
37 'sp_tile_cache.c',
38 'sp_video_context.c'
39 ])
40
41 Export('softpipe')