Sign in
dawn
/
dawn
/
afa7eff92192780f4e82a45b97e4f77fe7c8cf1c
/
.
/
test
/
tint
/
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
;
}