Sign in
dawn
/
dawn
/
06b49b392f78f259c0a3fb1fdd5cf8c8efb692f9
/
.
/
test
/
tint
/
expressions
/
binary
/
add
/
vec3-vec3
/
u32.wgsl.expected.msl
blob: 5299d8a79588d069a55549fc0b2dd33dcb99b86f [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint3
const
a
=
uint3
(
1u
,
2u
,
3u
);
uint3
const
b
=
uint3
(
4u
,
5u
,
6u
);
uint3
const
r
=
(
a
+
b
);
return
;
}