Index: src/gpu/GrBlend.cpp |
diff --git a/src/gpu/GrBlend.cpp b/src/gpu/GrBlend.cpp |
index 5d6f4723355c47816e5e5075cc916de1e4beebdf..31e45fa57981e5f1245946d5f4db4d9bbb6ab081 100644 |
--- a/src/gpu/GrBlend.cpp |
+++ b/src/gpu/GrBlend.cpp |
@@ -58,8 +58,8 @@ static GrColor simplify_blend_term(GrBlendCoeff* srcCoeff, |
GrColor dstColor, uint32_t dstCompFlags, |
GrColor constantColor) { |
- GrAssert(!GrBlendCoeffRefsSrc(*srcCoeff)); |
- GrAssert(NULL != srcCoeff); |
+ SkASSERT(!GrBlendCoeffRefsSrc(*srcCoeff)); |
+ SkASSERT(NULL != 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, |