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
ext_gpu_shader4: add compiler tests for everything
[piglit.git]
/
tests
/
spec
/
glsl-1.50
/
compiler
/
invariant-qualifier-in-out-block-01.vert
blob
5eb50d056c517218a6874d5b71b8368ad707b3c5
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
invariant vec4 x;
12
};
13
14
void main()
15
{
16
}