mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 09:00:10 +01:00
16 lines
190 B
Text
16 lines
190 B
Text
|
|
/* FAIL - type mismatch in assignment */
|
||
|
|
|
||
|
|
vec3 foo(float x, float y, float z)
|
||
|
|
{
|
||
|
|
vec3 v;
|
||
|
|
v.x = x;
|
||
|
|
v.y = y;
|
||
|
|
v.z = z;
|
||
|
|
return v;
|
||
|
|
}
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_Position = foo(1.0, 1.0, 1.0);
|
||
|
|
}
|