Index: gm/blurs.cpp |
diff --git a/gm/blurs.cpp b/gm/blurs.cpp |
index 8f95f007fa65cea4db50d1f74a77e9cdfb23a858..d52a656963e4b1896ec8fd3ddbb4287e33103f71 100644 |
--- a/gm/blurs.cpp |
+++ b/gm/blurs.cpp |
@@ -56,7 +56,7 @@ protected: |
flags); |
paint.setMaskFilter(mf)->unref(); |
} else { |
- paint.setMaskFilter(NULL); |
+ paint.setMaskFilter(nullptr); |
} |
canvas->drawCircle(SkIntToScalar(200 + gRecs[i].fCx*100), |
SkIntToScalar(200 + gRecs[i].fCy*100), |
@@ -75,7 +75,7 @@ protected: |
canvas->drawText("Hamburgefons Style", 18, x, y, paint); |
canvas->drawText("Hamburgefons Style", 18, |
x, y + SkIntToScalar(50), paint); |
- paint.setMaskFilter(NULL); |
+ paint.setMaskFilter(nullptr); |
paint.setColor(SK_ColorWHITE); |
x -= SkIntToScalar(2); |
y -= SkIntToScalar(2); |