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

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.1789457798
note Returncode was 1
command /usr/local/src/piglit/framework/../bin/glslparsertest tests/spec/arb_explicit_attrib_location/1.20/compiler/layout-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/layout-03.vert: 0(12) : error C0000: syntax error, unexpected '(' at token "("
  • 0(12) : error C0501: type name expected at token "("
  • 0(12) : warning C7022: unrecognized profile specifier "layout"
  • 0(12) : error C0000: syntax error, unexpected ')', expecting ',' or ';' at token ")"
  • 0(12) : error C0501: type name expected at token ")"
  • 0(12) : error C7537: OpenGL does not allow 'inout' after a type specifier
info
Returncode: 1

Errors:
Failed to compile vertex shader tests/spec/arb_explicit_attrib_location/1.20/compiler/layout-03.vert: 0(12) : error C0000: syntax error, unexpected '(' at token "("
0(12) : error C0501: type name expected at token "("
0(12) : warning C7022: unrecognized profile specifier "layout"
0(12) : error C0000: syntax error, unexpected ')', expecting ',' or ';' at token ")"
0(12) : error C0501: type name expected at token ")"
0(12) : error C7537: OpenGL does not allow 'inout' after a type specifier



Output:
Shader source:
// [config]
// expect_result: pass
// glsl_version: 1.20
// require_extensions: GL_ARB_explicit_attrib_location
// [end config]
//
// 'location' must be an integer constant

#version 120
#extension GL_ARB_explicit_attrib_location: require
#define X 1
layout(location = X) in vec4 vertex;

void main()
{
	gl_Position = vertex;
}

Back to summary