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
/
glslparsertest
/
shaders
/
function9.frag
blob
5202ef7c3cdebc41d61315c243b4f00350d7559a
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.10
4
//
5
// [end config]
6
7
void function(const in int i);
8
9
void main()
10
{
11
int i;
12
function(i);
13
}
14
15
// function definition has different parameter qualifiers than function declaration
16
void function(in int i)
17
{
18
i = 3;
19
}