aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-point-coord.frag
blob: b909f94bc235d8ce20880c7fe79ad265bdab5cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// [config]
// expect_result: fail
// glsl_version: 1.20
// glsles_version: 1.00
// [end config]
//
// From section 4.3.6 of the GLSL 1.20 spec:
//     A fragment shader can not write to a varying variable.
//
// From section 7.6 of the GLSL 1.20 spec:
//     The following varying variables are available to read from in a fragment shader.
//         ...
//     varying vec2 gl_PointCoord;


void g() {
    gl_PointCoord = vec2(0.0);
}