aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2016-09-12 06:31:05 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-12 06:31:05 -0700
commit0bed5bb8bee67e526047897a161bb703e2ffc694 (patch)
tree69a035994ecd168d16b65249018e1ad12628a131
parent46f2d0ad0d0e4f4cf0e7d6f158b3fb9fe4f615fa (diff)
fix code behind SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2337433002 TBR= NOTREECHECKS=True NOTRY=True Review-Url: https://codereview.chromium.org/2337433002
-rw-r--r--src/core/SkPaint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkPaint.cpp b/src/core/SkPaint.cpp
index 42b1a532de..9d76a169b3 100644
--- a/src/core/SkPaint.cpp
+++ b/src/core/SkPaint.cpp
@@ -398,7 +398,7 @@ SET_PTR(MaskFilter)
#ifdef SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR
SkDrawLooper* SkPaint::setLooper(SkDrawLooper* looper) {
- fLooper.reset(SkSafeRef(looper));
+ fDrawLooper.reset(SkSafeRef(looper));
return looper;
}
#endif