skia2/resources/sksl/fp/GrChildProcessorWithInputExpression.fp

8 lines
114 B
Plaintext
Raw Normal View History

uniform half4 color;
in fragmentProcessor child;
half4 main() {
return sample(child, color * half4(0.5));
}