Sign in
dawn
/
dawn
/
6e4a366841ee807f84932a190cb8fa8d8af10e11
/
.
/
test
/
tint
/
loops
/
loop_with_continuing.wgsl.expected.ir.glsl
blob: 076a8b3f551730c7cdacfd4accb8262d4c75e40f [
file
] [
log
] [
blame
]
#version 310 es
int
f
()
{
int
i
=
0
;
{
while
(
true
)
{
if
((
i
>
4
))
{
return
i
;
}
{
i
=
(
i
+
1
);
}
continue
;
}
}
/* unreachable */
}
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
main
()
{
}