Index: src/gpu/effects/GrBezierEffect.cpp |
diff --git a/src/gpu/effects/GrBezierEffect.cpp b/src/gpu/effects/GrBezierEffect.cpp |
index 23f18998d1ac54172d2fe92f7d209822da1a610e..92cf9a2594be0725e7e8928b9a095464e376ce57 100644 |
--- a/src/gpu/effects/GrBezierEffect.cpp |
+++ b/src/gpu/effects/GrBezierEffect.cpp |
@@ -226,7 +226,7 @@ GrGeometryProcessor* GrConicEffect::TestCreate(GrProcessorTestData* d) { |
gp = GrConicEffect::Create(GrRandomColor(d->fRandom), GrTest::TestMatrix(d->fRandom), |
edgeType, *d->fCaps, |
GrTest::TestMatrix(d->fRandom), d->fRandom->nextBool()); |
- } while (NULL == gp); |
+ } while (nullptr == gp); |
return gp; |
} |
@@ -435,7 +435,7 @@ GrGeometryProcessor* GrQuadEffect::TestCreate(GrProcessorTestData* d) { |
edgeType, *d->fCaps, |
GrTest::TestMatrix(d->fRandom), |
d->fRandom->nextBool()); |
- } while (NULL == gp); |
+ } while (nullptr == gp); |
return gp; |
} |
@@ -653,7 +653,7 @@ GrGeometryProcessor* GrCubicEffect::TestCreate(GrProcessorTestData* d) { |
d->fRandom->nextULessThan(kGrProcessorEdgeTypeCnt)); |
gp = GrCubicEffect::Create(GrRandomColor(d->fRandom), |
GrTest::TestMatrix(d->fRandom), edgeType, *d->fCaps); |
- } while (NULL == gp); |
+ } while (nullptr == gp); |
return gp; |
} |