Sign in
skia
/
skia
/
2d0176376188e297233610f5e5015987e2b25a36
/
.
/
tests
/
sksl
/
workarounds
/
LoopCondition.glsl
blob: c6dc157dadf712a3686a4f5e32ffe0e95c02954b [
file
] [
log
] [
blame
]
#version 400
void
main
()
{
int
c
=
0
;
for
(
int
i
=
0
;((
i
<
4
||
c
<
10
)
&&
true
);
++
i
)
{
c
+=
1
;
}
}