Results for spec/ARB_explicit_attrib_location/1.20/compiler/out-03.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.333149909973
note
Returncode was 1
command
/home/mks-hackers/piglit/framework/../bin/glslparsertest tests/spec/arb_explicit_attrib_location/1.20/compiler/out-03.vert pass 1.20 GL_ARB_explicit_attrib_location
errors
  • Failed to compile vertex shader tests/spec/arb_explicit_attrib_location/1.20/compiler/out-03.vert: 0(10) : error C5060: out can't be used with non-varying color
info
Returncode: 1

Errors:
Failed to compile vertex shader tests/spec/arb_explicit_attrib_location/1.20/compiler/out-03.vert: 0(10) : error C5060: out can't be used with non-varying color



Output:
Shader source:
// [config]
// expect_result: pass
// glsl_version: 1.20
// require_extensions: GL_ARB_explicit_attrib_location
// [end config]

#version 120
#extension GL_ARB_explicit_attrib_location: require
in vec4 vertex;
centroid out vec4 color;

void main()
{
	gl_Position = vertex;
	color = vec4(1.0);
}

Back to summary