Sign in
dawn
/
dawn
/
e7099d4f3bb22e23e975099fb1d1314f76cd6227
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: 0fb0d4dbc82fa0a36475d363c9cf8889b3b903f6 [
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
;
}