Sign in
dawn
/
dawn
/
2d245581d702e6d94de066f8d53a3f8b5aa263e2
/
.
/
test
/
tint
/
expressions
/
binary
/
add
/
vec3-scalar
/
i32.wgsl.expected.ir.msl
blob: 4044dab8d111768ac9077c663593a3dd2964d1a6 [
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
)));
}