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
arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git]
/
tests
/
spec
/
glsl-1.20
/
compiler
/
qualifiers
/
invariant-02.vert
blob
05a722fa17c539ae29bca4cc750df30726477050
1
// [config]
2
// expect_result: pass
3
// glsl_version: 1.20
4
// [end config]
5
//
6
// ensure that invariant-qualifier can be used on vs outputs
7
#version 120
8
9
invariant varying vec4 x;
10
11
void main()
12
{
13
x = vec4(0,0,0,1);
14
gl_Position = vec4(0,0,0,1);
15
}