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