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