summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/SConscript
blob: 493d7b28bc3b4e60080e441a413c006531e0896e (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
Import('*')

env = env.Clone()

r300 = env.ConvenienceLibrary(
    target = 'r300',
    source = [
        'r3xx_fs.c',
        'r5xx_fs.c',
        'r300_chipset.c',
        'r300_clear.c',
        'r300_context.c',
        'r300_debug.c',
        'r300_emit.c',
        'r300_flush.c',
        'r300_fs.c',
        'r300_query.c',
        'r300_render.c',
        'r300_screen.c',
        'r300_state.c',
        'r300_state_derived.c',
        'r300_state_invariant.c',
        'r300_vs.c',
        'r300_surface.c',
        'r300_texture.c',
    ])

Export('r300')