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
/
invariant-qualifier-in-out-block-02.vert
blob
b6c7b919affc6059fd6e118522b6a733b42c9a95
1
// [config]
2
// expect_result: pass
3
// glsl_version: 1.50
4
// [end config]
5
//
6
// Tests that the invariant qualifier can be applied to a member of an out block.
7
8
#version 150
9
10
out block {
11
vec4 x;
12
};
13
14
invariant x;
15
16
void main()
17
{
18
}