Sign in
skia
/
skia
/
67c3ee616fb5014d483c5314900eea663f10f1e3
/
.
/
tests
/
sksl
/
workarounds
/
RewriteDoWhileLoopsStandaloneSettings.glsl
blob: 1bb60b8926d2f5403d339c96290c53ae470058e9 [
file
] [
log
] [
blame
]
out
vec4 sk_FragColor
;
void
main
()
{
int
i
=
0
;
do
{
++
i
;
do
{
i
++;
}
while
(
true
);
}
while
(
i
<
10
);
sk_FragColor
=
vec4
(
float
(
i
));
}