Index: src/effects/SkBlurMask.cpp |
diff --git a/src/effects/SkBlurMask.cpp b/src/effects/SkBlurMask.cpp |
index 4d366fe9ff812fc38900d64a35af47802ad16772..0fc554fdd22e91c65efeb39594c0df98d73ebca2 100644 |
--- a/src/effects/SkBlurMask.cpp |
+++ b/src/effects/SkBlurMask.cpp |
@@ -530,7 +530,7 @@ bool SkBlurMask::BoxBlur(SkMask* dst, const SkMask& src, |
dst->fRowBytes = dst->fBounds.width(); |
dst->fFormat = SkMask::kA8_Format; |
- dst->fImage = NULL; |
+ dst->fImage = nullptr; |
if (src.fImage) { |
size_t dstSize = dst->computeImageSize(); |
@@ -754,7 +754,7 @@ bool SkBlurMask::BlurRect(SkScalar sigma, SkMask *dst, |
dst->fRowBytes = dst->fBounds.width(); |
dst->fFormat = SkMask::kA8_Format; |
- dst->fImage = NULL; |
+ dst->fImage = nullptr; |
int sw = SkScalarFloorToInt(src.width()); |
int sh = SkScalarFloorToInt(src.height()); |
@@ -769,7 +769,7 @@ bool SkBlurMask::BlurRect(SkScalar sigma, SkMask *dst, |
} |
return true; |
} |
- uint8_t *profile = NULL; |
+ uint8_t *profile = nullptr; |
ComputeBlurProfile(sigma, &profile); |
SkAutoTDeleteArray<uint8_t> ada(profile); |
@@ -890,7 +890,7 @@ bool SkBlurMask::BlurGroundTruth(SkScalar sigma, SkMask* dst, const SkMask& src, |
dst->fRowBytes = dst->fBounds.width(); |
dst->fFormat = SkMask::kA8_Format; |
- dst->fImage = NULL; |
+ dst->fImage = nullptr; |
if (src.fImage) { |