diff options
Diffstat (limited to 'data/shaders')
-rw-r--r-- | data/shaders/postprocess.frag | 19 |
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; - -} - |