diff options
| author | 2016-03-14 22:48:50 +0000 | |
|---|---|---|
| committer | 2016-03-14 22:48:51 +0000 | |
| commit | c33609cb8b91e048045a1a051a18ba0e1c6926cc (patch) | |
| tree | e22837adac4d4a2a17579ebe7811c473da31b169 /libs/hwui/ClipArea.cpp | |
| parent | 4be255e5b93e166d1a2a5b93b8aa9a594a03403e (diff) | |
| parent | 02806288d1c56475413888a934c796e6e4eb11c5 (diff) | |
Merge "Fix flickering when layers resize in-place" into nyc-dev
Diffstat (limited to 'libs/hwui/ClipArea.cpp')
| -rw-r--r-- | libs/hwui/ClipArea.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/hwui/ClipArea.cpp b/libs/hwui/ClipArea.cpp index afe980712d81..f886dda86deb 100644 --- a/libs/hwui/ClipArea.cpp +++ b/libs/hwui/ClipArea.cpp @@ -41,6 +41,10 @@ Rect transformAndCalculateBounds(const Rect& r, const Matrix4& transform) { return transformedBounds; } +void ClipBase::dump() const { + ALOGD("mode %d" RECT_STRING, mode, RECT_ARGS(rect)); +} + /* * TransformedRectangle */ |