Sign in
dawn
/
tint
/
3e80ae68ee4baa5a53d01bf5eb6795b416dc5bd5
/
.
/
test
/
expressions
/
binary
/
mod
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: 87e4dd4a7293a9936993c82cda9eea118bed0488 [
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
=
(
a
%
b
);
return
;
}