Sign in
dawn
/
dawn
/
361d12b5baba1c0e515e4ec9c8507c0b7df57a07
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
vec3-scalar
/
f32.wgsl.expected.ir.msl
blob: 0f6fff26eb4c8224f42e38141e20a10a944840d1 [
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
);
}