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/LayerBuilder.cpp | |
| parent | 4be255e5b93e166d1a2a5b93b8aa9a594a03403e (diff) | |
| parent | 02806288d1c56475413888a934c796e6e4eb11c5 (diff) | |
Merge "Fix flickering when layers resize in-place" into nyc-dev
Diffstat (limited to 'libs/hwui/LayerBuilder.cpp')
| -rw-r--r-- | libs/hwui/LayerBuilder.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/hwui/LayerBuilder.cpp b/libs/hwui/LayerBuilder.cpp index c5af279653d9..e6a95ff177a4 100644 --- a/libs/hwui/LayerBuilder.cpp +++ b/libs/hwui/LayerBuilder.cpp @@ -349,8 +349,9 @@ void LayerBuilder::replayBakedOpsImpl(void* arg, } void LayerBuilder::dump() const { - ALOGD("LayerBuilder %p, %ux%u buffer %p, blo %p, rn %p", - this, width, height, offscreenBuffer, beginLayerOp, renderNode); + ALOGD("LayerBuilder %p, %ux%u buffer %p, blo %p, rn %p (%s)", + this, width, height, offscreenBuffer, beginLayerOp, + renderNode, renderNode ? renderNode->getName() : "-"); for (const BatchBase* batch : mBatches) { batch->dump(); } |