Status: fail
Result: fail
| Detail | Value |
|---|---|
| returncode | 1 |
| time | 0.323067903519 |
| note | Returncode was 1 |
| errors |
|
| info | Returncode: 1
Errors:
Successfully compiled vertex shader tests/glslparsertest/glsl2/function-12.vert: (no compiler output)
Output:
Shader source:
// [config]
// expect_result: fail
// glsl_version: 1.20
// [end config]
/*
* GLSL 1.20
* 6.1.1 Function Calling Conventions
* Recursion is not allowed, not even statically.
*/
#version 120
int A()
{
return A();
}
void main()
{
gl_Position = gl_Vertex;
}
|