Sign in
dawn
/
dawn
/
01cea786e0ff548e50d578569794de4287225f8f
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: ce935ce5f85cc5d5862167a0bab67d32b6404681 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
float3 a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
const
float3 b
=
float3
(
4.0f
,
5.0f
,
6.0f
);
const
float3 r
=
(
float3
(
1.0f
,
2.0f
,
3.0f
)
*
float3
(
4.0f
,
5.0f
,
6.0f
));
return
;
}