| Index: src/core/SkBlitter.cpp
|
| diff --git a/src/core/SkBlitter.cpp b/src/core/SkBlitter.cpp
|
| index b2da6aec6a9fa4c0175a37aab4f91400407bed86..b9e991789142f7d019d88dbb250902bebddf6e57 100644
|
| --- a/src/core/SkBlitter.cpp
|
| +++ b/src/core/SkBlitter.cpp
|
| @@ -700,7 +700,7 @@ public:
|
| virtual void toString(SkString* str) const SK_OVERRIDE {
|
| str->append("Sk3DShader: (");
|
|
|
| - if (NULL != fProxy) {
|
| + if (fProxy) {
|
| str->append("Proxy: ");
|
| fProxy->toString(str);
|
| }
|
| @@ -875,7 +875,7 @@ SkBlitter* SkBlitter::Choose(const SkBitmap& device,
|
| shader = shader3D;
|
| }
|
|
|
| - if (NULL != mode) {
|
| + if (mode) {
|
| switch (interpret_xfermode(*paint, mode, device.colorType())) {
|
| case kSrcOver_XferInterp:
|
| mode = NULL;
|
|
|