aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm')
-rw-r--r--src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm b/src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm
index b90948af44..5be351f52e 100644
--- a/src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm
+++ b/src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm
@@ -89,7 +89,11 @@ GrGLFuncPtr IOSGLContext::onPlatformGetProcAddress(const char* procName) const {
} // anonymous namespace
-SkGLContext* SkCreatePlatformGLContext(GrGLStandard forcedGpuAPI) {
+SkGLContext* SkCreatePlatformGLContext(GrGLStandard forcedGpuAPI, SkGLContext* shareContext) {
+ SkASSERT(!shareContext);
+ if (shareContext) {
+ return NULL;
+ }
if (kGL_GrGLStandard == forcedGpuAPI) {
return NULL;
}