Sign in
dawn
/
tint
/
72494048277a6191c8bed6004a353b767197b28f
/
.
/
test
/
expressions
/
binary
/
sub
/
scalar-vec3
/
f32.wgsl.expected.msl
blob: ce03e023d8a61a9063dac1e4613e247749ac3130 [
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
);
return
;
}