aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpu/gl/debug/SkDebugGLContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/debug/SkDebugGLContext.h')
-rw-r--r--src/gpu/gl/debug/SkDebugGLContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/gl/debug/SkDebugGLContext.h b/src/gpu/gl/debug/SkDebugGLContext.h
index 0a61f72cb2..abbcf559c5 100644
--- a/src/gpu/gl/debug/SkDebugGLContext.h
+++ b/src/gpu/gl/debug/SkDebugGLContext.h
@@ -16,14 +16,14 @@ public:
static SkDebugGLContext* Create(GrGLStandard forcedGpuAPI) {
if (kGLES_GrGLStandard == forcedGpuAPI) {
- return NULL;
+ return nullptr;
}
return new SkDebugGLContext;
}
private:
void onPlatformMakeCurrent() const override {}
void onPlatformSwapBuffers() const override {}
- GrGLFuncPtr onPlatformGetProcAddress(const char*) const override { return NULL; }
+ GrGLFuncPtr onPlatformGetProcAddress(const char*) const override { return nullptr; }
SkDebugGLContext();
};