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