blob: f9fdf4309bfd6c6f8d1e7ec2dd7af7c756d375fc [file] [log] [blame]
uniform half4 color;
in fragmentProcessor child1;
in fragmentProcessor child2;
void main() {
half4 childIn = color;
half4 childOut1 = sample(child1, childIn);
half4 childOut2 = sample(child2, childOut1);
sk_OutColor = childOut2;
}