Sign in
dawn
/
tint
/
594e010cfb6716f8f02a3d1fc2bfc84bd3e4858c
/
.
/
test
/
expressions
/
bitcast
/
vector
/
u32-f32.wgsl.expected.msl
blob: 23762902cba9b13838b7d0e5a18809ef20554246 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint3
const
a
=
uint3
(
1u
,
2u
,
3u
);
float3
const
b
=
as_type
<float3>
(
a
);
return
;
}