| Index: src/core/SkLocalMatrixShader.h
|
| diff --git a/src/core/SkLocalMatrixShader.h b/src/core/SkLocalMatrixShader.h
|
| index 62654275f430d7d7074a04842536bfec9177f7f0..6e8c307c1630467bf10d55910c88dbaa33c46d7e 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) const override {
|
| + const SkMatrix* localMatrix,
|
| + SkFilterQuality fq, GrRenderTarget* dst) const override {
|
| SkMatrix tmp = this->getLocalMatrix();
|
| if (localMatrix) {
|
| tmp.preConcat(*localMatrix);
|
| }
|
| - return fProxyShader->asFragmentProcessor(context, viewM, &tmp, fq);
|
| + return fProxyShader->asFragmentProcessor(context, viewM, &tmp, fq, dst);
|
| }
|
| #endif
|
|
|
|
|