1uniform half4 color;
2
3in fragmentProcessor child1;
4in fragmentProcessor child2;
5
6half4 main() {
7    half4 childIn = color;
8    half4 childOut1 = sample(child1, childIn);
9    half4 childOut2 = sample(child2, childOut1);
10    return childOut2;
11}
12