summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv50/SConscript
blob: 3c8a7276b9723c1244f02eb351677bb0d64cdb80 (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
32
Import('*')

env = env.Clone()

nv50 = env.ConvenienceLibrary(
    target = 'nv50',
    source = [
        'nv50_context.c',
        'nv50_draw.c',
        'nv50_formats.c',
        'nv50_miptree.c',
        'nv50_resource.c',
        'nv50_screen.c',
        'nv50_state.c',
        'nv50_state_validate.c',
        'nv50_surface.c',
        'nv50_tex.c',
        'nv50_transfer.c',
        'nv50_vbo.c',
        'nv50_program.c',
        'nv50_shader_state.c',
        'nv50_pc.c',
        'nv50_pc_print.c',
        'nv50_pc_emit.c',
        'nv50_tgsi_to_nc.c',
        'nv50_pc_optimize.c',
        'nv50_pc_regalloc.c',
        'nv50_push.c',
        'nv50_query.c'
    ])

Export('nv50')