Sign in
dawn
/
dawn
/
4127abfd410f29f7cabfd0a95cd942acd222977f
/
.
/
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
;
}