Sign in
dawn
/
tint
/
77e2c6f0b2479d286406c2dc8802ba93c79ca5fb
/
.
/
test
/
expressions
/
binary
/
mul
/
scalar-scalar
/
i32.wgsl.expected.msl
blob: 7a20eacd7c915b3541974473da665fac6e7339b3 [
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
;
}