Sign in
dawn
/
dawn
/
08f33fe5c6daea5cede4c1a5ac891fd3bf975c31
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
scalar-vec3
/
i32.wgsl.expected.ir.msl
blob: 3dc9d7d5309522822f7778803f3debaed9c05376 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int
const
a
=
4
;
int3
const
b
=
int3
(
1
,
2
,
3
);
int3
const
r
=
(
a
%
b
);
}