Index: src/gpu/GrStrokeInfo.h |
diff --git a/src/gpu/GrStrokeInfo.h b/src/gpu/GrStrokeInfo.h |
index b9ba5eada1a1b24dd4b16c12d4e27a43c11a9370..2bd056ea3cadba0e77d35bb50f42a9f9d0dea3af 100644 |
--- a/src/gpu/GrStrokeInfo.h |
+++ b/src/gpu/GrStrokeInfo.h |
@@ -56,7 +56,7 @@ public: |
* dashed effect and we are stroking, otherwise it retruns false. |
*/ |
bool setDashInfo(const SkPathEffect* pe) { |
- if (NULL != pe && !fStroke.isFillStyle()) { |
+ if (pe && !fStroke.isFillStyle()) { |
fDashInfo.fIntervals = NULL; |
fDashType = pe->asADash(&fDashInfo); |
if (SkPathEffect::kDash_DashType == fDashType) { |