repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
glslparsertest
/
glsl2
/
constructor-26.vert
blob
a0c6867d3a87ed9aeec7d1b7938eb89c39dfc0ca
1
/* PASS */
2
#version 120
3
struct s { float f; };
4
5
void main()
6
{
7
s t = s(1); // an implicit conversion should happen here
8
}