Sign in
dawn
/
dawn
/
c5f7e8f0bc9983a9010c5353932601b40bd45ae7
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
scalar-vec3
/
f32.wgsl.expected.msl
blob: bd32879c5cb4defe661026f51d55d45d10256f4f [
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
=
(
4.0f
-
float3
(
1.0f
,
2.0f
,
3.0f
));
return
;
}