summaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/tex_rect-07.frag
blob: 6b176309fbe7c579ed1f57175287e8a20ca5ee04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// [config]
// expect_result: pass
// glsl_version: 1.10
//
// [end config]

/* PASS */
uniform sampler2DRectShadow s;
varying vec3 coord;

void main()
{
  gl_FragColor = shadow2DRect(s, coord);
}