aboutsummaryrefslogtreecommitdiff
path: root/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
diff options
context:
space:
mode:
authorBrian Salomon <bsalomon@google.com>2017-12-11 16:36:53 -0500
committerSkia Commit-Bot <skia-commit-bot@chromium.org>2017-12-11 22:03:38 +0000
commit94f509b5042c29540d0b4ef255798b8daed5ace6 (patch)
tree4e02079f0227014e01ed538ac41c777d9db43e55 /tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
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 'tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp')
-rw-r--r--tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
index 1924257be7..743aa4ef3a 100644
--- a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
+++ b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
@@ -135,7 +135,7 @@ static sk_sp<const GrGLInterface> create_command_buffer_interface() {
if (!gfFunctionsLoadedSuccessfully) {
return nullptr;
}
- return GrGLAssembleGLESInterface(gLibrary, command_buffer_get_gl_proc);
+ return GrGLMakeAssembledGLESInterface(gLibrary, command_buffer_get_gl_proc);
}