diff options
author | Chris Craik <ccraik@google.com> | 2015-04-06 18:04:59 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-04-06 18:05:00 +0000 |
commit | b7acab634ad2a8f318e5e53267df010e3c2a2219 (patch) | |
tree | 9041ad32d6ed042cdced8dd4641e90f62dbc46b8 /libs | |
parent | 1ffaca4414c5c2b73e5aaf085728e3b01ea534c3 (diff) | |
parent | e9c01a40a2f0f0da195dfbb2909aaee5c005d1c6 (diff) | |
download | frameworks_base-b7acab634ad2a8f318e5e53267df010e3c2a2219.zip frameworks_base-b7acab634ad2a8f318e5e53267df010e3c2a2219.tar.gz frameworks_base-b7acab634ad2a8f318e5e53267df010e3c2a2219.tar.bz2 |
Merge "Fix path clipping in VectorDrawable"
Diffstat (limited to 'libs')
-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 597d95c..9e7faee 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(); } |