Sign in
dawn
/
dawn
/
54bcbdbbf34be86f006c7e4cadc60798942a99b5
/
.
/
test
/
tint
/
loops
/
while_with_continue.wgsl.expected.fxc.hlsl
blob: c0d22da75a577ae435ec58faebb2212cc2d87049 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
int
f
()
{
int
i
=
0
;
[
loop
]
while
((
i
<
4
))
{
i
=
(
i
+
1
);
continue
;
}
return
i
;
}