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