Status: fail
Result: fail
| Detail | Value |
|---|---|
| returncode | 1 |
| time | 0.261268138885 |
| note | Returncode was 1 |
| command | /Users/mks/Downloads/piglit/framework/../bin/glslparsertest tests/spec/glsl-1.10/compiler/qualifiers/fn-inout-array-prohibited-cstyle.frag fail 1.10 |
| errors |
|
| info | Returncode: 1
Errors:
Successfully compiled fragment shader tests/spec/glsl-1.10/compiler/qualifiers/fn-inout-array-prohibited-cstyle.frag: (no compiler output)
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])
{
}
|