Sign in
dawn
/
tint
/
0fe30b52a5c93473923419d0043840d61ca46746
/
.
/
test
/
expressions
/
binary
/
add
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: ca9e441efeb23dfc7bf242eb5c450ef92db2ef88 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
1u
;
uint
const
b
=
2u
;
uint
const
r
=
(
a
+
b
);
return
;
}