repo.or.cz
/
piglit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git]
/
tests
/
spec
/
glsl-1.50
/
compiler
/
vs-disallows-redeclaration-of-pervertex-in.vert
blob
eb56198b1f9129e37e2cf779398d3be27e3d1bb9
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.50
4
// check_link: false
5
// [end config]
6
//
7
// The gl_PerVertex input interface block only exists in geometry
8
// shaders. Check that it may not be redeclared in vertex shaders.
9
10
#version 150
11
12
in gl_PerVertex {
13
vec4 gl_Position;
14
} gl_in[];
15
16
void main()
17
{
18
}