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
|
Import('*')
env = env.Clone()
llvmpipe = env.ConvenienceLibrary(
target = 'llvmpipe',
source = [
'lp_fs_exec.c',
'lp_fs_sse.c',
'lp_fs_llvm.c',
'lp_clear.c',
'lp_context.c',
'lp_draw_arrays.c',
'lp_flush.c',
'lp_prim_setup.c',
'lp_prim_vbuf.c',
'lp_setup.c',
'lp_quad_alpha_test.c',
'lp_quad_blend.c',
'lp_quad_pipe.c',
'lp_quad_colormask.c',
'lp_quad_coverage.c',
'lp_quad_depth_test.c',
'lp_quad_earlyz.c',
'lp_quad_fs.c',
'lp_quad_occlusion.c',
'lp_quad_output.c',
'lp_quad_stencil.c',
'lp_quad_stipple.c',
'lp_query.c',
'lp_screen.c',
'lp_state_blend.c',
'lp_state_clip.c',
'lp_state_derived.c',
'lp_state_fs.c',
'lp_state_rasterizer.c',
'lp_state_sampler.c',
'lp_state_surface.c',
'lp_state_vertex.c',
'lp_surface.c',
'lp_tex_sample.c',
'lp_texture.c',
'lp_tile_cache.c',
])
Export('softpipe')
|