Sign in
dawn
/
tint
/
3e80ae68ee4baa5a53d01bf5eb6795b416dc5bd5
/
.
/
test
/
expressions
/
binary
/
add
/
vec3-vec3
/
f32.wgsl.expected.msl
blob: 011652a019c4eebab402406a1451b9efa80f943c [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
float3
const
a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float3
const
b
=
float3
(
4.0f
,
5.0f
,
6.0f
);
float3
const
r
=
(
a
+
b
);
return
;
}