| Index: src/core/SkLocalMatrixShader.h
|
| diff --git a/src/core/SkLocalMatrixShader.h b/src/core/SkLocalMatrixShader.h
|
| index a108259461d347cad72e94824e3f577d8615e3a8..62654275f430d7d7074a04842536bfec9177f7f0 100644
|
| --- a/src/core/SkLocalMatrixShader.h
|
| +++ b/src/core/SkLocalMatrixShader.h
|
| @@ -29,13 +29,13 @@ public:
|
|
|
| #if SK_SUPPORT_GPU
|
| const GrFragmentProcessor* asFragmentProcessor(GrContext* context, const SkMatrix& viewM,
|
| - const SkMatrix* localMatrix, SkFilterQuality fq,
|
| - GrProcessorDataManager* procDataManager) const override {
|
| + const SkMatrix* localMatrix,
|
| + SkFilterQuality fq) const override {
|
| SkMatrix tmp = this->getLocalMatrix();
|
| if (localMatrix) {
|
| tmp.preConcat(*localMatrix);
|
| }
|
| - return fProxyShader->asFragmentProcessor(context, viewM, &tmp, fq, procDataManager);
|
| + return fProxyShader->asFragmentProcessor(context, viewM, &tmp, fq);
|
| }
|
| #endif
|
|
|
|
|