Results for spec/glsl-1.30/compiler/storage-qualifiers/vs-inout-01.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.182142972946
note
Returncode was 1
errors
  • Successfully compiled vertex shader tests/spec/glsl-1.30/compiler/storage-qualifiers/vs-inout-01.vert:
command
/home/mks-hackers/piglit/framework/../bin/glslparsertest tests/spec/glsl-1.30/compiler/storage-qualifiers/vs-inout-01.vert fail 1.30
info
Returncode: 1

Errors:
Successfully compiled vertex shader tests/spec/glsl-1.30/compiler/storage-qualifiers/vs-inout-01.vert: 


Output:
Shader source:
// [config]
// expect_result: fail
// glsl_version: 1.30
// [end config]
//
// Attempt to declare a vertex global with 'inout'.
//
// From section 4.3.6 of the GLSL 1.30 spec:
//     "There is not an inout storage qualifier at global scope [...]".

#version 130

inout float x;

float f() {
	return 0.0;
}

Back to summary