Status: fail
Result: fail
| Detail | Value |
|---|---|
| returncode | 1 |
| time | 0.102926015854 |
| note | Returncode was 1 |
| errors |
|
| info | Returncode: 1
Errors:
Failed to compile vertex shader tests/glslparsertest/glsl2/array-13.vert: ERROR: 0:8: 'array of 4-component vector of float' : constructor not supported for type
ERROR: 0:8: 'array of 4-component vector of float' : no matching overloaded function found
ERROR: 0:8: 'assign' : cannot convert from 'const float' to 'array of 4-component vector of float'
Output:
Shader source:
#version 120
/* PASS */
void main()
{
vec4 a[2];
a = vec4 [] (vec4(1.0), vec4(2.0));
gl_Position = gl_Vertex;
}
|