diff options
| author | 2015-04-06 10:47:23 -0700 | |
|---|---|---|
| committer | 2015-04-06 10:50:36 -0700 | |
| commit | e9c01a40a2f0f0da195dfbb2909aaee5c005d1c6 (patch) | |
| tree | 98bb68bd73ad336faa1c07ba79fba02cfbf63bdd /libs/hwui/Snapshot.cpp | |
| parent | 095d99904579a5231d974a2447661c10a8eb621b (diff) | |
Fix path clipping in VectorDrawable
bug:19946683
Change-Id: I773957df7459eb72ea5d505afb0daac08239ecbf
Diffstat (limited to 'libs/hwui/Snapshot.cpp')
| -rw-r--r-- | libs/hwui/Snapshot.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/hwui/Snapshot.cpp b/libs/hwui/Snapshot.cpp index 597d95ce7973..9e7faee69fba 100644 --- a/libs/hwui/Snapshot.cpp +++ b/libs/hwui/Snapshot.cpp @@ -203,8 +203,9 @@ void Snapshot::dump() const { ALOGD("Snapshot %p, flags %x, prev %p, height %d, ignored %d, hasComplexClip %d", this, flags, previous.get(), getViewportHeight(), isIgnored(), !mClipArea->isSimple()); const Rect& clipRect(mClipArea->getClipRect()); - ALOGD(" ClipRect %.1f %.1f %.1f %.1f", - clipRect.left, clipRect.top, clipRect.right, clipRect.bottom); + ALOGD(" ClipRect %.1f %.1f %.1f %.1f, clip simple %d", + clipRect.left, clipRect.top, clipRect.right, clipRect.bottom, mClipArea->isSimple()); + ALOGD(" Transform (at %p):", transform); transform->dump(); } |