| Index: src/utils/SkTextureCompressor_LATC.cpp
|
| diff --git a/src/utils/SkTextureCompressor_LATC.cpp b/src/utils/SkTextureCompressor_LATC.cpp
|
| index f0cf4a90ac3d09cf3c50caf37a82c90d4b925d27..3ee6b2787bc8974439be0c759d313570b0267b5e 100644
|
| --- a/src/utils/SkTextureCompressor_LATC.cpp
|
| +++ b/src/utils/SkTextureCompressor_LATC.cpp
|
| @@ -485,7 +485,7 @@ bool CompressA8ToLATC(uint8_t* dst, const uint8_t* src, int width, int height, s
|
| SkBlitter* CreateLATCBlitter(int width, int height, void* outputBuffer,
|
| SkTBlitterAllocator* allocator) {
|
| if ((width % 4) != 0 || (height % 4) != 0) {
|
| - return NULL;
|
| + return nullptr;
|
| }
|
|
|
| #if COMPRESS_LATC_FAST
|
| @@ -502,7 +502,7 @@ SkBlitter* CreateLATCBlitter(int width, int height, void* outputBuffer,
|
| (width, height, outputBuffer);
|
| #elif COMPRESS_LATC_SLOW
|
| // TODO (krajcevski)
|
| - return NULL;
|
| + return nullptr;
|
| #endif
|
| }
|
|
|
|
|