aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/glx
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-12-11 16:36:53 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-11 22:03:38 +0000
commit94f509b5042c29540d0b4ef255798b8daed5ace6 (patch)
tree4e02079f0227014e01ed538ac41c777d9db43e55 /src/gpu/gl/glx
parent2f466242c7289b246d7ef665aa50006cfd11aa36 (diff)
Rename GrGLAssembleFooInterface to GrGLMakeAssembledFooInterface.
Add GrGLAssembleInterface with legacy bare pointer return. This allows existing clients of GrGLAssembleInterface to roll Skia without code changes. Change-Id: I0764a9f4583e554fff5574889adcc6fe004db159 Reviewed-on: https://skia-review.googlesource.com/83564 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'src/gpu/gl/glx')
-rw-r--r--src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp b/src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp
index 4bbbe087a2..c57ec2646d 100644
--- a/src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp
+++ b/src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp
@@ -31,7 +31,7 @@ sk_sp<const GrGLInterface> GrGLMakeNativeInterface() {
return nullptr;
}
- return GrGLAssembleInterface(nullptr, glx_get);
+ return GrGLMakeAssembledInterface(nullptr, glx_get);
}
const GrGLInterface* GrGLCreateNativeInterface() { return GrGLMakeNativeInterface().release(); }