| Index: src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp
|
| diff --git a/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp b/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp
|
| index ddc9e693a4d6825d9e6a29c7bb73a3733d3b5026..703e39d097dd52c16aaaf224cab9ecff38dfc9d5 100644
|
| --- a/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp
|
| +++ b/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp
|
| @@ -13,10 +13,10 @@
|
| #include <GLES2/gl2.h>
|
|
|
| static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) {
|
| - SkASSERT(NULL == ctx);
|
| + SkASSERT(nullptr == ctx);
|
| return eglGetProcAddress(name);
|
| }
|
|
|
| const GrGLInterface* GrGLCreateNativeInterface() {
|
| - return GrGLAssembleInterface(NULL, egl_get_gl_proc);
|
| + return GrGLAssembleInterface(nullptr, egl_get_gl_proc);
|
| }
|
|
|