aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp')
-rw-r--r--src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp b/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp
index ddc9e693a4..703e39d097 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);
}