Sign in
dawn
/
dawn
/
afa7eff92192780f4e82a45b97e4f77fe7c8cf1c
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
vec3-scalar
/
f32.wgsl.expected.msl
blob: 7799789514d606938c531a64bd10be6b4117dbee [
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
;
}