Sign in
dawn
/
dawn
/
50414807150bdac9f41817fea7bdf939425768be
/
.
/
test
/
tint
/
expressions
/
binary
/
div_by_zero
/
by_constant
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: fa216caa027cbd0f058173e728579c3cc08b3939 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
float3 a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
const
float3 b
=
float3
(
0.0f
,
5.0f
,
0.0f
);
const
float3 r
=
(
float3
(
1.0f
,
2.0f
,
3.0f
)
/
float3
(
0.0f
,
5.0f
,
0.0f
));
return
;
}