Index: src/effects/SkBlurImageFilter.cpp |
diff --git a/src/effects/SkBlurImageFilter.cpp b/src/effects/SkBlurImageFilter.cpp |
index 0625d37a42a18c3b16539ebb11752add214a9b8e..4e1fde250bed74617a368d370e3703115b738b53 100644 |
--- a/src/effects/SkBlurImageFilter.cpp |
+++ b/src/effects/SkBlurImageFilter.cpp |
@@ -121,21 +121,20 @@ |
inputBounds.offset(-inputOffset); |
dstBounds.offset(-inputOffset); |
SkRect inputBoundsF(SkRect::Make(inputBounds)); |
- sk_sp<GrDrawContext> drawContext(SkGpuBlurUtils::GaussianBlur( |
- context, |
- inputTexture.get(), |
- source->props().isGammaCorrect(), |
- SkRect::Make(dstBounds), |
- &inputBoundsF, |
- sigma.x(), |
- sigma.y())); |
- if (!drawContext) { |
+ sk_sp<GrTexture> tex(SkGpuBlurUtils::GaussianBlur(context, |
+ inputTexture.get(), |
+ source->props().isGammaCorrect(), |
+ SkRect::Make(dstBounds), |
+ &inputBoundsF, |
+ sigma.x(), |
+ sigma.y())); |
+ if (!tex) { |
return nullptr; |
} |
return SkSpecialImage::MakeFromGpu(SkIRect::MakeWH(dstBounds.width(), dstBounds.height()), |
kNeedNewImageUniqueID_SpecialImage, |
- drawContext->asTexture(), &source->props()); |
+ std::move(tex), &source->props()); |
} |
#endif |