Sign in
dawn
/
tint
/
9943de6813695e831a9e6aa43ae36322e81ae3e6
/
.
/
test
/
expressions
/
binary
/
mod_by_zero
/
by_expression
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: 8d2155076d7e95679c77141c6fe95397f602a388 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
float3 a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float3 b
=
float3
(
0.0f
,
5.0f
,
0.0f
);
const
float3 r
=
(
a
%
(
b
+
b
));
return
;
}