summaryrefslogtreecommitdiff
path: root/tests/spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D.frag')
-rw-r--r--tests/spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D.frag8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D.frag b/tests/spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D.frag
deleted file mode 100644
index f32e98f09..000000000
--- a/tests/spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D.frag
+++ /dev/null
@@ -1,8 +0,0 @@
-#version 110
-
-uniform sampler1DShadow tex;
-varying vec4 texcoords;
-
-void main() {
- gl_FragColor = shadow1D(tex, vec3(texcoords.x, 0.0, texcoords.y));
-}