Sign in
dawn
/
dawn
/
617570a7da4a30d4277f84f6c58f7d851114e47e
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
vec3-vec3
/
f32.wgsl.expected.hlsl
blob: f4a568e53017b569df38f634b29d0230d9178636 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
float3 a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
const
float3 b
=
float3
(
4.0f
,
5.0f
,
6.0f
);
const
float3 r
=
(
a
-
b
);
return
;
}