aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ImageFilterCacheTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-04-25 12:32:54 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-25 12:32:55 -0700
commitc91fd3447e1d3452d5e43e70e371896c80645b61 (patch)
treeec9a701b992bf549c2c220042fa44ce5c8cd8633 /tests/ImageFilterCacheTest.cpp
parent1eca11659e217eca138c230525a52deb3d52b2d3 (diff)
Add another dollop of sk_sp to SkSpecialImage and SkSpecialSurface
Diffstat (limited to 'tests/ImageFilterCacheTest.cpp')
-rw-r--r--tests/ImageFilterCacheTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ImageFilterCacheTest.cpp b/tests/ImageFilterCacheTest.cpp
index 40c805a14e..58d279c1c7 100644
--- a/tests/ImageFilterCacheTest.cpp
+++ b/tests/ImageFilterCacheTest.cpp
@@ -213,7 +213,7 @@ DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ImageFilterCache_ImageBackedGPU, reporter,
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ImageFilterCache_GPUBacked, reporter, ctxInfo) {
- SkAutoTUnref<GrTexture> srcTexture(create_texture(ctxInfo.fGrContext));
+ sk_sp<GrTexture> srcTexture(create_texture(ctxInfo.fGrContext));
if (!srcTexture) {
return;
}