Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
runtime
/
LargeProgram_SplitLoops.minified.sksl
blob: ea52abe3d41c54ccfb3e66beaf4c0eb2fa289ee2 [
file
] [
log
] [
blame
]
void
d
(
inout
int
e
){
for
(
int
f
=
0
;
f
<
10
;++
f
)++
e
;}
void
c
(
inout
int
e
){
for
(
int
f
=
0
;
f
<
10
;++
f
)
d
(
e
);}
void
b
(
inout
int
e
){
for
(
int
f
=
0
;
f
<
10
;++
f
)
c
(
e
);}
void
a
(
inout
int
e
){
for
(
int
f
=
0
;
f
<
10
;++
f
)
b
(
e
);}
half4 main
(
float2 e
){
int
f
=
0
;
a
(
f
);
return
half4
(
0.
);}