| Index: include/gpu/GrPaint.h
|
| diff --git a/include/gpu/GrPaint.h b/include/gpu/GrPaint.h
|
| index 20dec35b5bedf88308d1407500ef5e0f903b644e..900ab4c407b878c1a7e227188ed7eb396597b363 100644
|
| --- a/include/gpu/GrPaint.h
|
| +++ b/include/gpu/GrPaint.h
|
| @@ -88,7 +88,7 @@ public:
|
| * Appends an additional color effect to the color computation.
|
| */
|
| const GrEffect* addColorEffect(const GrEffect* effect, int attr0 = -1, int attr1 = -1) {
|
| - SkASSERT(NULL != effect);
|
| + SkASSERT(effect);
|
| if (!effect->willUseInputColor()) {
|
| fColorStages.reset();
|
| }
|
| @@ -100,7 +100,7 @@ public:
|
| * Appends an additional coverage effect to the coverage computation.
|
| */
|
| const GrEffect* addCoverageEffect(const GrEffect* effect, int attr0 = -1, int attr1 = -1) {
|
| - SkASSERT(NULL != effect);
|
| + SkASSERT(effect);
|
| if (!effect->willUseInputColor()) {
|
| fCoverageStages.reset();
|
| }
|
|
|