Sign in
dawn
/
tint
/
9943de6813695e831a9e6aa43ae36322e81ae3e6
/
.
/
test
/
expressions
/
binary
/
mod_by_zero
/
by_constant
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: 5ea2fbd98fc1ed3b1e805611de57e1d324cc9f69 [
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
=
(
a
%
b
);
return
;
}