Sign in
dawn
/
tint
/
01e4b6fc18c26c52f3da0799bca87a08444dca65
/
.
/
test
/
expressions
/
binary
/
sub
/
vec3-scalar
/
i32.wgsl.expected.msl
blob: 6149a0c537427fbd3fb2aea6d956c5523675f1e8 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int3
const
a
=
int3
(
1
,
2
,
3
);
int
const
b
=
4
;
int3
const
r
=
as_type
<int3>
((
as_type
<uint3>
(
a
)
-
as_type
<uint>
(
b
)));
return
;
}