diff options
| author | 2016-01-28 19:03:38 +0000 | |
|---|---|---|
| committer | 2016-01-28 19:03:38 +0000 | |
| commit | 65d56d36f29d99df8127da8383f0938f819a3944 (patch) | |
| tree | d15dae93534179f2b5da6503d6ae868b0c9eb651 | |
| parent | fbc728041dd16526a2faec6f0b687e6f89e9b19f (diff) | |
| parent | 28d4ea558435b1b245bd5774c0db056a2ffdb385 (diff) | |
Merge "Fix redundant drawPath call"
| -rw-r--r-- | libs/hwui/VectorDrawable.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libs/hwui/VectorDrawable.cpp b/libs/hwui/VectorDrawable.cpp index 4d4acb94c255..1cf15ac01154 100644 --- a/libs/hwui/VectorDrawable.cpp +++ b/libs/hwui/VectorDrawable.cpp @@ -201,7 +201,6 @@ void FullPath::drawPath(SkCanvas* outCanvas, const SkPath& renderPath, float str needsFill = true; } else if (mFillColor != SK_ColorTRANSPARENT) { mPaint.setColor(applyAlpha(mFillColor, mFillAlpha)); - outCanvas->drawPath(renderPath, mPaint); needsFill = true; } |