skia2/resources/sksl/fp/GrChildProcessorSampleMatrixSingleInUniform.fp

7 lines
108 B
Plaintext
Raw Normal View History

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