Sign in
dawn
/
dawn
/
b29892be0999aba1f958aafd7256dbf7c6d2fa28
/
.
/
test
/
tint
/
expressions
/
bitcast
/
vector
/
u32-i32.wgsl.expected.msl
blob: e8b5e5e3e88d379a3b1ee4728c670cf92f70dca7 [
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>
(
uint3
(
1u
,
2u
,
3u
));
return
;
}