| Index: src/gpu/gl/mesa/SkMesaGLContext.h
|
| diff --git a/src/gpu/gl/mesa/SkMesaGLContext.h b/src/gpu/gl/mesa/SkMesaGLContext.h
|
| index 1548bfd8ee97714bef9aeafd3e55fae7f671109e..a58f1c890ee92cf05834f9f851524ef9e86da354 100644
|
| --- a/src/gpu/gl/mesa/SkMesaGLContext.h
|
| +++ b/src/gpu/gl/mesa/SkMesaGLContext.h
|
| @@ -21,12 +21,12 @@ public:
|
|
|
| static SkMesaGLContext* Create(GrGLStandard forcedGpuAPI) {
|
| if (kGLES_GrGLStandard == forcedGpuAPI) {
|
| - return NULL;
|
| + return nullptr;
|
| }
|
| SkMesaGLContext* ctx = new SkMesaGLContext;
|
| if (!ctx->isValid()) {
|
| delete ctx;
|
| - return NULL;
|
| + return nullptr;
|
| }
|
| return ctx;
|
| }
|
|
|