Sign in
dawn
/
dawn
/
08f33fe5c6daea5cede4c1a5ac891fd3bf975c31
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
vec3-scalar
/
f16.wgsl.expected.ir.msl
blob: 8bd6d026619bfa880c7b727d7d052b7ac7125134 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
half3
const
a
=
half3
(
1.0h
,
2.0h
,
3.0h
);
half
const
b
=
4.0h
;
half3
const
r
=
(
a
*
b
);
}