Sign in
dawn
/
dawn
/
3530c6bf0641a95cc4bf8d43e54c7a484da8536d
/
.
/
test
/
expressions
/
splat
/
var
/
f32.wgsl.expected.hlsl
blob: 00091d7f6e904bfe8f68e301601a667fcb2c85ef [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
void
f
()
{
float
v
=
(
1.0f
+
2.0f
);
float2 v2
=
float2
((
v
).
xx
);
float3 v3
=
float3
((
v
).
xxx
);
float4 v4
=
float4
((
v
).
xxxx
);
}