Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
7c6abf86f54c917f0a364e1843f86a5e494ae87a
/
.
/
resources
/
sksl
/
fp
/
GrChildProcessorsWithInput.fp
blob: a7b78322cc96d8f236e5ea54b63bcb4490bf343d [
file
] [
log
] [
blame
]
uniform half4 color
;
in
fragmentProcessor child1
;
in
fragmentProcessor child2
;
half4 main
()
{
half4 childIn
=
color
;
half4 childOut1
=
sample
(
child1
,
childIn
);
half4 childOut2
=
sample
(
child2
,
childOut1
);
return
childOut2
;
}