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
/
arb_arrays_of_arrays
/
compiler
/
initialization-invalid.vert
blob
f6870a0ca108dded816f6e5d396671bd18203883
1
/* [config]
2
* expect_result: fail
3
* glsl_version: 1.20
4
* require_extensions: GL_ARB_arrays_of_arrays
5
* [end config]
6
*/
7
#version 120
8
#extension GL_ARB_arrays_of_arrays: enable
9
10
void main()
11
{
12
vec4[4][2] a = vec4[3][2](vec4[2](vec4(0.0), vec4(1.0)),
13
vec4[2](vec4(0.0), vec4(1.0)),
14
vec4[2](vec4(0.0), vec4(1.0)));
15
16
gl_Position = a[2][1];
17
}