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
/
comma2.vert
blob
452eec47989a7464db35ae1266593dba20a72172
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.10
4
//
5
// [end config]
6
7
void main()
8
{
9
int i, j, k;
10
float f;
11
i = j, k, f;
12
i = (j = k, f = 1.0); // float cannot be assigned to int
13
gl_Position = vec4(1);
14
}