summaryrefslogtreecommitdiff
path: root/tests/spec/arb_shader_texture_lod/compiler/tex_grad-09.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/arb_shader_texture_lod/compiler/tex_grad-09.frag')
-rw-r--r--tests/spec/arb_shader_texture_lod/compiler/tex_grad-09.frag17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/spec/arb_shader_texture_lod/compiler/tex_grad-09.frag b/tests/spec/arb_shader_texture_lod/compiler/tex_grad-09.frag
deleted file mode 100644
index 012986dc6..000000000
--- a/tests/spec/arb_shader_texture_lod/compiler/tex_grad-09.frag
+++ /dev/null
@@ -1,17 +0,0 @@
-/* [config]
- * expect_result: pass
- * glsl_version: 1.10
- * require_extensions: GL_ARB_shader_texture_lod
- * [end config]
- */
-#extension GL_ARB_shader_texture_lod: require
-
-uniform sampler2DShadow s;
-varying vec3 coord;
-varying vec2 dPdx;
-varying vec2 dPdy;
-
-void main()
-{
- gl_FragColor = shadow2DGradARB(s, coord, dPdx, dPdy);
-}