| Index: src/effects/SkGpuBlurUtils.cpp
|
| diff --git a/src/effects/SkGpuBlurUtils.cpp b/src/effects/SkGpuBlurUtils.cpp
|
| index 6cb349e13686001a75c77655dc325b978de91877..b3f097fc60f928d7f86eafe57ebeeef63737d840 100644
|
| --- a/src/effects/SkGpuBlurUtils.cpp
|
| +++ b/src/effects/SkGpuBlurUtils.cpp
|
| @@ -181,13 +181,13 @@ GrTexture* GaussianBlur(GrContext* context,
|
| SkAutoTUnref<GrTexture> temp1, temp2;
|
|
|
| temp1.reset(context->textureProvider()->refScratchTexture(
|
| - desc, GrTextureProvider::kApprox_ScratchTexMatch));
|
| + desc, GrTextureProvider::kApprox_ScratchMatch));
|
| dstTexture = temp1.get();
|
| if (canClobberSrc) {
|
| tempTexture = srcTexture;
|
| } else {
|
| temp2.reset(context->textureProvider()->refScratchTexture(
|
| - desc, GrTextureProvider::kApprox_ScratchTexMatch));
|
| + desc, GrTextureProvider::kApprox_ScratchMatch));
|
| tempTexture = temp2.get();
|
| }
|
|
|
|
|