progs: Port fp programs to GLEW.

This commit is contained in:
José Fonseca
2009-06-11 13:19:34 +01:00
parent 48d816b8ff
commit e3f14f2f3b
10 changed files with 50 additions and 26 deletions

View File

@@ -11,7 +11,20 @@ env.Prepend(CPPPATH = [
env.Prepend(LIBS = ['$GLUT_LIB'])
env.Program(
target = 'fp-tri',
source = ['fp-tri.c'],
progs = [
'fp-tri',
'tri-depth',
'tri-depth2',
'tri-depthwrite',
'tri-depthwrite2',
'tri-inv',
'tri-param',
'tri-tex',
'point-position',
]
for prog in progs:
env.Program(
target = prog,
source = [prog + '.c'],
)