Results for spec/glsl-1.10/compiler/qualifiers/fn-out-array-prohibited-cstyle.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.111824989319
note
Returncode was 1
command
/Users/mks/Downloads/piglit/framework/../bin/glslparsertest tests/spec/glsl-1.10/compiler/qualifiers/fn-out-array-prohibited-cstyle.vert fail 1.10
errors
  • Successfully compiled vertex shader tests/spec/glsl-1.10/compiler/qualifiers/fn-out-array-prohibited-cstyle.vert: (no compiler output)
info
Returncode: 1

Errors:
Successfully compiled vertex shader tests/spec/glsl-1.10/compiler/qualifiers/fn-out-array-prohibited-cstyle.vert: (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 out 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(out float x[2])
{
}

Back to summary