summaryrefslogtreecommitdiff
path: root/src/glsl/tests/qualifier-07.glsl
blob: 12568a57dbc5fd398440d53cb022592f7de2d3a6 (plain)
1
2
3
4
5
6
7
/* FAIL - out only allowed in parameter list in GLSL 1.10 */
void main()
{
  out vec4 foo;

  gl_Position = gl_Vertex;
}