Sign in
dawn
/
dawn
/
f84c6bf8ffff670e5d90c94e09e45f472adf3a66
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
scalar-vec3
/
u32.wgsl.expected.msl
blob: 398f5552752c7d04a54442a62608351246303c0b [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
4u
;
uint3
const
b
=
uint3
(
1u
,
2u
,
3u
);
uint3
const
r
=
(
a
*
b
);
}