Sign in
skia
/
skia
/
97be28c4cc05231fe6e70dc32662c24700e731cc
/
.
/
tests
/
sksl
/
runtime
/
LargeProgram_NestedLoops.minified.sksl
blob: 9095b40332677532822f3f677181a9bc0cc9f0bb [
file
] [
log
] [
blame
]
half4 main
(
float2 a
){
int
b
;
for
(
int
c
=
0
;
c
<
10
;++
c
){
for
(
int
d
=
0
;
d
<
10
;++
d
){
for
(
int
e
=
0
;
e
<
10
;++
e
){
for
(
int
f
=
0
;
f
<
10
;++
f
){++
b
;}}}}
return
half4
(
0.
);}