Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
cb15b7cf77a646e15890ac7dd9c91de29f2ed96a
/
.
/
resources
/
sksl
/
runtime
/
LargeProgram_NestedLoops.rts
blob: 313817c0e9149b3382d0c9be26d8cec2b85f963c [
file
] [
log
] [
blame
]
half4 main
(
float2 xy
)
{
int
i
;
for
(
int
a
=
0
;
a
<
10
;
++
a
)
{
// 10
for
(
int
b
=
0
;
b
<
10
;
++
b
)
{
// 100
for
(
int
c
=
0
;
c
<
10
;
++
c
)
{
// 1000
for
(
int
d
=
0
;
d
<
10
;
++
d
)
{
// 10000
++
i
;
}}}}
return
half4
(
0
);
}