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