1uniform half4 color; 2in fragmentProcessor child1; 3in fragmentProcessor child2; 4 5half4 main() { 6 return sample(child2, color * sample(child1, color * half4(0.5))); 7} 8