summaryrefslogtreecommitdiff
path: root/progs/fpglsl/simpleif.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'progs/fpglsl/simpleif.glsl')
-rw-r--r--progs/fpglsl/simpleif.glsl6
1 files changed, 0 insertions, 6 deletions
diff --git a/progs/fpglsl/simpleif.glsl b/progs/fpglsl/simpleif.glsl
deleted file mode 100644
index 922421b410..0000000000
--- a/progs/fpglsl/simpleif.glsl
+++ /dev/null
@@ -1,6 +0,0 @@
-void main() {
- // this should always be true
- if (gl_FragCoord.x >= 0.0) {
- gl_FragColor = vec4(0.5, 0.0, 0.5, 1.0);
- }
-}