a16bdc1f66
Change-Id: Ief2a60fccdffcb8a0cf785a5adcca5d3e1172b49 Bug: skia:10549 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/344298 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
12 lines
243 B
GLSL
12 lines
243 B
GLSL
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;
|
|
}
|