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
cl: Don't use device_infos if num_device_infos == 0
[piglit.git]
/
tests
/
glslparsertest
/
glsl2
/
array-23.vert
blob
df09137f681e2c722fc2433259e4cde70d44fccd
1
// [config]
2
// expect_result: pass
3
// glsl_version: 1.10
4
// [end config]
5
6
void main()
7
{
8
/* Array sizes greater than 256 trigger an assertion in the Mesa
9
7.8 compiler.
10
*/
11
int a[257];
12
13
gl_Position = gl_Vertex;
14
}