Results for spec/glsl-1.20/compiler/structure-and-array-operations/array-function-parameter-unsized.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 1.11175584793
note
Returncode was 1
command
/home/mks-hackers/piglit/framework/../bin/glslparsertest tests/spec/glsl-1.20/compiler/structure-and-array-operations/array-function-parameter-unsized.vert fail 1.20
errors
  • Successfully compiled vertex shader tests/spec/glsl-1.20/compiler/structure-and-array-operations/array-function-parameter-unsized.vert: Vertex shader was successfully compiled to run on hardware.
info
Returncode: 1

Errors:
Successfully compiled vertex shader tests/spec/glsl-1.20/compiler/structure-and-array-operations/array-function-parameter-unsized.vert: Vertex shader was successfully compiled to run on hardware.



Output:
Shader source:
/* [config]
 * expect_result: fail
 * glsl_version: 1.20
 * [end config]
 *
 * From page 19 (page 25 of the PDF) of the GLSL 1.20 spec:
 *
 *     "Arrays declared as formal parameters in a function declaration
 *     must specify a size."
 */
#version 120

vec4 a_function(vec4 [] p);

uniform vec4 [6] an_array;

void main()
{
  gl_Position = a_function(an_array);
}

Back to summary