Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / tex_lod-10.frag
blobcd9fb0d18fd283c2dc65a285d509bf172d3a058e
1 /* FAIL
2  * Without GLSL 1.40 or GL_ARB_shader_texture_lod, the "Lod" versions of the
3  * texture lookup functions are not available in fragment shaders.
4  */
5 uniform sampler2DShadow s;
6 varying vec4 coord;
7 varying float lod;
9 void main()
11   gl_FragColor = shadow2DProjLod(s, coord, lod);