Sign in
dawn
/
dawn
/
1fa6a4beb24243ad86bba906eca9c09e4cbb200d
/
.
/
test
/
tint
/
expressions
/
binary
/
add
/
scalar-vec3
/
f32.wgsl.expected.ir.msl
blob: bcc07434cfce6d737dbc869be159bfdd2f74b8c5 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
float
const
a
=
4.0f
;
float3
const
b
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float3
const
r
=
(
a
+
b
);
}