Sign in
dawn
/
dawn
/
7143450998c72258f994acea688164f2fa1ff3eb
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
scalar-vec3
/
u32.wgsl.expected.msl
blob: aa59c35cfcfefa345f6ce100c7eb9277215909b5 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
4u
;
uint3
const
b
=
uint3
(
1u
,
2u
,
3u
);
uint3
const
r
=
(
a
/
b
);
return
;
}