summaryrefslogtreecommitdiff
path: root/tests/spec/arb_shader_texture_lod/compiler/tex_lod-07.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/arb_shader_texture_lod/compiler/tex_lod-07.frag')
-rw-r--r--tests/spec/arb_shader_texture_lod/compiler/tex_lod-07.frag16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/spec/arb_shader_texture_lod/compiler/tex_lod-07.frag b/tests/spec/arb_shader_texture_lod/compiler/tex_lod-07.frag
deleted file mode 100644
index cf2c52e38..000000000
--- a/tests/spec/arb_shader_texture_lod/compiler/tex_lod-07.frag
+++ /dev/null
@@ -1,16 +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 sampler2D s;
-varying vec3 coord;
-varying float lod;
-
-void main()
-{
- gl_FragColor = texture2DProjLod(s, coord, lod);
-}