repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
glslparsertest
/
glsl2
/
invariant-01.vert
blob
6e687d5e1590e123d9e50eaead96cf62c2dc0a3a
1
/* PASS - based on examples in the GLSL 1.20 spec */
2
#version 120
3
4
invariant gl_Position;
5
6
varying vec3 Color1;
7
invariant Color1;
8
9
invariant varying vec3 Color2;
10
11
void main() { }