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.10
/
compiler
/
dereference-scalar-as-array-for-function-param.vert
blob
ce1e1d08792c275ed06ec39ee022fc78c0d763c6
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.10
4
// [end config]
5
6
void func(int x)
7
{
8
return;
9
}
10
11
void main()
12
{
13
func(0[2]);
14
}