aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpu/gl
diff options
context:
space:
mode:
authorGravatar Ben Wagner <bungeman@google.com>2016-11-03 15:43:44 -0400
committerGravatar Ben Wagner <bungeman@google.com>2016-11-03 19:45:29 +0000
commit12e8dc256dc521c3b1f465726b99fbce3b95728c (patch)
tree34c346c42e199111dbbfedb0a69c58c69f5f33bb /tools/gpu/gl
parent7d3028818ec1b6a653da45387ddf0fa01888cdda (diff)
Fix iOS and Angle builds.
"Remove SkAutoTDelete." did not run trybots on these specific bots. Change-Id: Ibfa731df387a90a78187b88c75483800981a691c Reviewed-on: https://skia-review.googlesource.com/4387 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
Diffstat (limited to 'tools/gpu/gl')
-rw-r--r--tools/gpu/gl/angle/GLTestContext_angle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpu/gl/angle/GLTestContext_angle.cpp b/tools/gpu/gl/angle/GLTestContext_angle.cpp
index aa55bf3475..24f722a01f 100644
--- a/tools/gpu/gl/angle/GLTestContext_angle.cpp
+++ b/tools/gpu/gl/angle/GLTestContext_angle.cpp
@@ -288,7 +288,7 @@ const GrGLInterface* CreateANGLEGLInterface() {
}
std::unique_ptr<GLTestContext> MakeANGLETestContext(ANGLEBackend type, ANGLEContextVersion version){
- std::unique_ptr<ANGLEGLContext> ctx(new ANGLEGLContext(type, version));
+ std::unique_ptr<GLTestContext> ctx(new ANGLEGLContext(type, version));
if (!ctx->isValid()) {
return nullptr;
}