Status: fail
			Result: fail
		
| Detail | Value | 
|---|---|
| returncode | 1 | 
| time | 0.235999822617 | 
| note | Returncode was 1 | 
| errors | 
 | 
| info | Returncode: 1
Errors:
Failed to compile vertex shader tests/spec/glsl-1.10\compiler\qualifiers\invariant-01.vert: Vertex shader failed to compile with the following errors:
ERROR: 0:7: error(#132) Syntax error: 'invariant' parse error
ERROR: error(#273) 1 compilation errors.  No code generated
Output:
Shader source:
// [config]
// expect_result: pass
// glsl_version: 1.10
// [end config]
//
// "invariant" is not a reserved word in GLSL 1.10
uniform vec4 invariant;
void main()
{
  gl_Position = invariant;
}
 |