1in fragmentProcessor child1;
2in fragmentProcessor child2;
3
4half4 main(float2 coord) {
5    return sample(coord.x > 10 ? child1 : child2);
6}
7