Status: fail
Result: fail
| Detail | Value |
|---|---|
| returncode | 1 |
| time | 0.123719930649 |
| note | Returncode was 1 |
| errors |
|
| command | /usr/local/src/piglit/framework/../bin/glslparsertest tests/spec/glsl-1.10/compiler/qualifiers/fn-inout-array-prohibited-cstyle.vert fail 1.10 |
| info | Returncode: 1
Errors:
Successfully compiled vertex shader tests/spec/glsl-1.10/compiler/qualifiers/fn-inout-array-prohibited-cstyle.vert:
Output:
Shader source:
// [config]
// expect_result: fail
// glsl_version: 1.10
// [end config]
//
// Check that an array can't be used as a function inout parameter in
// GLSL 1.10.
//
// In this test, the array is declared using C-style array
// declaration syntax (float x[2] as opposed to float[2] x).
//
// From section 5.8 of the GLSL 1.10 spec:
// Other binary or unary expressions, non-dereferenced arrays,
// function names, swizzles with repeated fields, and constants
// cannot be l-values.
#version 110
void f(inout float x[2])
{
}
|