Sign in
dawn
/
dawn
/
06b49b392f78f259c0a3fb1fdd5cf8c8efb692f9
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
scalar-vec3
/
i32.wgsl.expected.msl
blob: 8837be0e924805d1dab2c569f08fbe4c1782d9bd [
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
=
as_type
<int3>
((
as_type
<uint>
(
a
)
-
as_type
<uint3>
(
b
)));
return
;
}