skia2/resources/sksl/fp/GrChildProcessorSampleMatrixSingleUniformExpr.fp

7 lines
111 B
Plaintext
Raw Normal View History

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