| Index: src/effects/SkGpuBlurUtils.cpp
|
| diff --git a/src/effects/SkGpuBlurUtils.cpp b/src/effects/SkGpuBlurUtils.cpp
|
| index ec37505d3eb041255ca547dbdda0981a109978ea..f0c10c2871f8197f5c941ab1d5e44a23621681b5 100644
|
| --- a/src/effects/SkGpuBlurUtils.cpp
|
| +++ b/src/effects/SkGpuBlurUtils.cpp
|
| @@ -275,7 +275,7 @@ GrTexture* GaussianBlur(GrContext* context,
|
| SkRect dstRect = SkRect::MakeWH(srcRect.width(), srcRect.height());
|
|
|
| SkAutoTUnref<GrDrawContext> dstDrawContext(
|
| - context->drawContext(dstTexture->asRenderTarget()));
|
| + context->drawContext(dstTexture->asRenderTarget()));
|
| if (!dstDrawContext) {
|
| return nullptr;
|
| }
|
| @@ -309,7 +309,7 @@ GrTexture* GaussianBlur(GrContext* context,
|
| SkRect dstRect = SkRect::MakeWH(srcRect.width(), srcRect.height());
|
|
|
| SkAutoTUnref<GrDrawContext> dstDrawContext(
|
| - context->drawContext(dstTexture->asRenderTarget()));
|
| + context->drawContext(dstTexture->asRenderTarget()));
|
| if (!dstDrawContext) {
|
| return nullptr;
|
| }
|
| @@ -347,7 +347,7 @@ GrTexture* GaussianBlur(GrContext* context,
|
| scale_rect(&dstRect, (float) scaleFactorX, (float) scaleFactorY);
|
|
|
| SkAutoTUnref<GrDrawContext> dstDrawContext(
|
| - context->drawContext(dstTexture->asRenderTarget()));
|
| + context->drawContext(dstTexture->asRenderTarget()));
|
| if (!dstDrawContext) {
|
| return nullptr;
|
| }
|
|
|