Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
runtime
/
LargeProgram_NestedLoops.stage
blob: f665579711200f8370266326b46bb9fce73411e2 [
file
] [
log
] [
blame
]
half4 main
(
float2 xy
)
{
int
i
;
for
(
int
a
=
0
;
a
<
10
;
++
a
)
{
for
(
int
b
=
0
;
b
<
10
;
++
b
)
{
for
(
int
c
=
0
;
c
<
10
;
++
c
)
{
for
(
int
d
=
0
;
d
<
10
;
++
d
)
{
++
i
;
}
}
}
}
return
half4
(
half4
(
0.0
));
}