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
framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git]
/
tests
/
spec
/
glsl-1.50
/
compiler
/
fs-disallows-redeclaration-of-pervertex-out.frag
blob
4e6e035cdc2d456894406ec484a330b181924252
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.50
4
// check_link: false
5
// [end config]
6
//
7
// The gl_PerVertex output interface block only exists in vertex and
8
// geometry shaders. Check that it may not be redeclared in fragment
9
// shaders.
10
11
#version 150
12
13
out gl_PerVertex {
14
vec4 gl_Position;
15
};
16
17
void main()
18
{
19
}