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

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.702668905258
note
Returncode was 1
command
/home/mks-hackers/piglit/framework/../bin/glslparsertest tests/spec/arb_explicit_attrib_location/1.10/compiler/out-03.vert fail 1.10 GL_ARB_explicit_attrib_location
errors
  • Successfully compiled vertex shader tests/spec/arb_explicit_attrib_location/1.10/compiler/out-03.vert: Vertex shader was successfully compiled to run on hardware.
info
Returncode: 1

Errors:
Successfully compiled vertex shader tests/spec/arb_explicit_attrib_location/1.10/compiler/out-03.vert: Vertex shader was successfully compiled to run on hardware.



Output:
Shader source:
// [config]
// expect_result: fail
// glsl_version: 1.10
// require_extensions: GL_ARB_explicit_attrib_location
// [end config]
//
// GL_ARB_explicit_attrib_location interacts with the 'centroid' qualifier,
// but it does not make it available in 1.10 shaders.

#version 110
#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