Index: src/gpu/GrBlend.cpp |
diff --git a/src/gpu/GrBlend.cpp b/src/gpu/GrBlend.cpp |
index c8631c42ef0d26c269d93705dbb2f909b57c6f11..52e335e9b0461cd7132ce97abdcb26cb0f91dbef 100644 |
--- a/src/gpu/GrBlend.cpp |
+++ b/src/gpu/GrBlend.cpp |
@@ -59,7 +59,7 @@ static GrColor simplify_blend_term(GrBlendCoeff* srcCoeff, |
GrColor constantColor) { |
SkASSERT(!GrBlendCoeffRefsSrc(*srcCoeff)); |
- SkASSERT(NULL != srcCoeff); |
+ SkASSERT(srcCoeff); |
// Check whether srcCoeff can be reduced to kOne or kZero based on known color inputs. |
// We could pick out the coeff r,g,b,a values here and use them to compute the blend term color, |