summaryrefslogtreecommitdiff
path: root/progs/demos/SConscript
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-05-21 09:32:38 -0700
committerEric Anholt <eric@anholt.net>2010-05-21 12:20:39 -0700
commit68fc4b415e322f6744299e39864fbc377c6eff74 (patch)
tree4bafffd8b0105174f3c5c0ae327a005be9145990 /progs/demos/SConscript
parente4f4489e3fc0b36d72821b55794fb843b2b7fa5f (diff)
Remove demos that have moved to git+ssh://git.freedesktop.org/git/mesa/demos.
The remaining programs are ones I've had difficulty finding a build environment for to make the build system or are unit tests that should probably live next to their code instead. Hopefully people can bring over the build for remaining pieces they care about.
Diffstat (limited to 'progs/demos/SConscript')
-rw-r--r--progs/demos/SConscript71
1 files changed, 0 insertions, 71 deletions
diff --git a/progs/demos/SConscript b/progs/demos/SConscript
deleted file mode 100644
index 20ec6a002a7..00000000000
--- a/progs/demos/SConscript
+++ /dev/null
@@ -1,71 +0,0 @@
-Import('*')
-
-progs = [
- 'arbfplight',
- 'arbfslight',
- 'arbocclude',
- 'arbocclude2',
- 'bounce',
- 'clearspd',
- 'copypix',
- 'cubemap',
- 'dinoshade',
- 'dissolve',
- 'drawpix',
- 'engine',
- 'fbo_firecube',
- 'fbotexture',
- 'fire',
- 'fogcoord',
- 'fplight',
- 'fslight',
- 'gamma',
- 'gearbox',
- 'gears',
- 'geartrain',
- 'glinfo',
- 'gloss',
- 'gltestperf',
- 'ipers',
- 'isosurf',
- 'lodbias',
- 'morph3d',
- 'multiarb',
- 'paltex',
- 'pointblast',
- 'projtex',
- 'ray',
- 'readpix',
- 'reflect',
- 'renormal',
- 'shadowtex',
- 'singlebuffer',
- 'spectex',
- 'spriteblast',
- 'stex3d',
- 'teapot',
- 'terrain',
- 'tessdemo',
- 'texcyl',
- 'texenv',
- 'textures',
- 'trispd',
- 'tunnel',
- 'tunnel2',
- 'vao_demo',
- 'winpos',
-]
-
-for prog in progs:
- progs_env.Program(
- target = prog,
- source = prog + '.c',
- )
-
-progs_env.Program(
- target = 'rain',
- source = [
- 'rain.cxx',
- 'particles.cxx',
- ]
-)