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;
}