skia2/tests/sksl/fp/GrChildProcessorSampleMatrixMultipleUniforms.fp
Brian Osman 4d3bfc511d Make all fragmentProcessors implicitly nullable in SkSL
This feature had devolved to just an assert, and one that isn't really
necessary - all of Ganesh is built to handle any child processor being
null. The next step is to remove nullable types entirely -- a large
amount of code.

Change-Id: I612a5867f8690400b405aa1f5c929e76cf5918fd
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/347050
Commit-Queue: Brian Osman <brianosman@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
Reviewed-by: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
2020-12-23 20:22:18 +00:00

8 lines
164 B
GLSL

in fragmentProcessor child;
in uniform float3x3 matrixA;
in uniform float3x3 matrixB;
half4 main() {
return sample(child, matrixA) + sample(child, matrixB);
}