| Index: src/core/SkPictureShader.cpp
|
| diff --git a/src/core/SkPictureShader.cpp b/src/core/SkPictureShader.cpp
|
| index 92e615734380dd02cc1367bfcc3108e54cef1022..1f3402e04a305b955dbf7779debaa6a9d6c9bc9c 100644
|
| --- a/src/core/SkPictureShader.cpp
|
| +++ b/src/core/SkPictureShader.cpp
|
| @@ -318,7 +318,8 @@ const GrFragmentProcessor* SkPictureShader::asFragmentProcessor(
|
| GrContext* context,
|
| const SkMatrix& viewM,
|
| const SkMatrix* localMatrix,
|
| - SkFilterQuality fq) const {
|
| + SkFilterQuality fq,
|
| + GrRenderTarget* dst) const {
|
| int maxTextureSize = 0;
|
| if (context) {
|
| maxTextureSize = context->caps()->maxTextureSize();
|
| @@ -327,6 +328,6 @@ const GrFragmentProcessor* SkPictureShader::asFragmentProcessor(
|
| if (!bitmapShader) {
|
| return nullptr;
|
| }
|
| - return bitmapShader->asFragmentProcessor(context, viewM, nullptr, fq);
|
| + return bitmapShader->asFragmentProcessor(context, viewM, nullptr, fq, dst);
|
| }
|
| #endif
|
|
|