Sign in
dawn
/
dawn
/
807351eca19f59cd787f23474244455dba5b05e2
/
.
/
test
/
tint
/
switch
/
switch_multi_selector.wgsl
blob: bd5701678197b812898e82cfe6341f1d07e734ea [
file
] [
log
] [
blame
]
@compute
@workgroup_size
(
1
)
fn a
()
{
var
a
=
0
;
switch
(
a
)
{
case
0
,
2
,
4
:
{
break
;
}
case
1
,
default
:
{
return
;
}
}
}