Sign in
dawn
/
tint
/
57489928c6bfc468c8b45e76446eb4b403c012d2
/
.
/
test
/
expressions
/
binary
/
right-shift
/
vector-vector
/
u32.wgsl.expected.msl
blob: b5aa9e9f9573d28f9b0ec4eca4a6f145dbe8f6c7 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint3
const
a
=
uint3
(
1u
,
2u
,
3u
);
uint3
const
b
=
uint3
(
4u
,
5u
,
6u
);
uint3
const
r
=
(
a
>>
b
);
return
;
}