arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git] / tests / spec / glsl-1.10 / compiler / samplers / inout.frag
bloba3249d2b03cf08261d51b67446745bc977411a6d
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.10
4  * [end config]
5  *
6  * From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "Samplers cannot be treated as l-values; hence cannot be used
9  *     as out or inout function parameters..."
10  *
11  * The GLSL 1.10 spec does not state this rule specifically, but it is
12  * clear from context that it is intended.
13  */
14 void f(inout sampler2D p)
18 void main()
20         gl_FragColor = vec4(1.0);