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