repo.or.cz
/
mesa
/
mesa-lb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gallium: change remaining util functions to use cso sampler views
[mesa/mesa-lb.git]
/
progs
/
glsl
/
SConscript
blob
8f2ebcf69c42619ca85f96d5a2533334e784845b
1
Import('*')
2
3
progs = [
4
'array',
5
'bitmap',
6
'brick',
7
'bump',
8
'convolutions',
9
'deriv',
10
'fragcoord',
11
'identity',
12
'linktest',
13
'mandelbrot',
14
'multinoise',
15
'multitex',
16
'noise',
17
'noise2',
18
'pointcoord',
19
'points',
20
'samplers',
21
'shadow_sampler',
22
'skinning',
23
'texaaline',
24
'texdemo1',
25
'toyball',
26
'trirast',
27
'twoside',
28
'vert-or-frag-only',
29
'vert-tex',
30
]
31
32
for prog in progs:
33
progs_env.Program(
34
target = prog,
35
source = prog + '.c',
36
)
37