Sign in
dawn
/
tint
/
7b0686a922a4f2bd63c153eebdd7c9cd7e80b669
/
.
/
test
/
expressions
/
binary
/
mod
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: 5d4b949e72986b5e2505e114076488912837d9e7 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
1u
;
uint
const
b
=
2u
;
uint
const
r
=
(
a
%
b
);
return
;
}