skia2/resources/sksl/fp/GrChildProcessorSampleMatrixSingleUniform.fp

7 lines
105 B
Plaintext
Raw Normal View History

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