aboutsummaryrefslogtreecommitdiff
path: root/data/shaders
diff options
context:
space:
mode:
authortaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-05-16 00:16:57 +0000
committertaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-05-16 00:16:57 +0000
commit0ff31a9a69e4b1bd781202b9cdcde8a9a7c4e7f5 (patch)
treeefdf84b75a320f3ed9a5ff40b8b4d6b19410843a /data/shaders
parent17a153e21767fcc7a67186dd7ef8cdd0a7e26ed2 (diff)
Revert postprocess stuff
git-svn-id: svn://cook.msm.cam.ac.uk:745/thrust3d/thrust3d@17 84d2e878-0bd5-11dd-ad15-13eda11d74c5
Diffstat (limited to 'data/shaders')
-rw-r--r--data/shaders/postprocess.frag19
1 files changed, 0 insertions, 19 deletions
diff --git a/data/shaders/postprocess.frag b/data/shaders/postprocess.frag
deleted file mode 100644
index c475ae9..0000000
--- a/data/shaders/postprocess.frag
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * postprocess.frag
- *
- * Display post-processing
- *
- * (c) 2007-2008 Thomas White <taw27@cam.ac.uk>
- *
- * thrust3d - a silly game
- *
- */
-
-uniform sampler2D texture;
-
-void main() {
-
- gl_FragColor = texture2D(texture, gl_TexCoord[0].st) * 0.9;
-
-}
-