Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SConscript 277B

123456789101112131415161718
  1. Import('*')
  2. progs = [
  3. 'fp-tri',
  4. 'tri-depth',
  5. 'tri-depth2',
  6. 'tri-depthwrite',
  7. 'tri-depthwrite2',
  8. 'tri-param',
  9. 'tri-tex',
  10. 'point-position',
  11. ]
  12. for prog in progs:
  13. progs_env.Program(
  14. target = prog,
  15. source = [prog + '.c'],
  16. )