nv50: introduce the big formats table
[mesa.git] / src / gallium / drivers / nv50 / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 nv50 = env.ConvenienceLibrary(
6 target = 'nv50',
7 source = [
8 'nv50_buffer.c',
9 'nv50_clear.c',
10 'nv50_context.c',
11 'nv50_draw.c',
12 'nv50_formats.c',
13 'nv50_miptree.c',
14 'nv50_query.c',
15 'nv50_program.c',
16 'nv50_resource.c',
17 'nv50_screen.c',
18 'nv50_state.c',
19 'nv50_state_validate.c',
20 'nv50_surface.c',
21 'nv50_tex.c',
22 'nv50_transfer.c',
23 'nv50_vbo.c',
24 'nv50_push.c',
25 ])
26
27 Export('nv50')