repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
glslparsertest
/
glsl2
/
tex_lod-02.frag
blob
cbb85a0dc4bada872ac8853e65280ae55256e6e9
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 sampler1D s;
6
varying vec2 coord;
7
varying float lod;
8
9
void main()
10
{
11
gl_FragColor = texture1DProjLod(s, coord, lod);
12
}