summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/SConscript
blob: 8e3a8caa74c7d78fb615e09aad70262b3ef21f0d (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
Import('*')

draw = env.ConvenienceLibrary(
	target = 'draw',
	source = [
		'draw_clip.c',
		'draw_vs_exec.c',
		'draw_vs_sse.c',
		'draw_vs_llvm.c',
		'draw_context.c',
		'draw_cull.c',
		'draw_debug.c',
		'draw_flatshade.c',
		'draw_offset.c',
		'draw_prim.c',
		'draw_stipple.c',
		'draw_twoside.c',
		'draw_unfilled.c',
		'draw_validate.c',
		'draw_vbuf.c',
		'draw_vertex.c',
		'draw_vertex_cache.c',
		'draw_vertex_fetch.c',
		'draw_vertex_shader.c',
		'draw_vf.c',
		'draw_vf_generic.c',
		'draw_vf_sse.c',
		'draw_wide_prims.c',
	])

auxiliaries.insert(0, draw)