diff options
author | Mathias Agopian <mathias@google.com> | 2012-09-11 20:52:46 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2012-09-11 20:52:46 -0700 |
commit | 791da60dd322f596b29320edb97c5366070c9ddc (patch) | |
tree | 65b5c6ace50b1feed6385f15a0f0f365a2eeb262 /services | |
parent | b0d1dd36f104c0b581674adc7f830cbf44b7db06 (diff) | |
download | frameworks_native-791da60dd322f596b29320edb97c5366070c9ddc.zip frameworks_native-791da60dd322f596b29320edb97c5366070c9ddc.tar.gz frameworks_native-791da60dd322f596b29320edb97c5366070c9ddc.tar.bz2 |
fix typo in LayerBase::dump()
Change-Id: Ie4861a58baed003b7ef643931d41f6be3fbfd00c
Diffstat (limited to 'services')
-rw-r--r-- | services/surfaceflinger/LayerBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/LayerBase.cpp b/services/surfaceflinger/LayerBase.cpp index 311d95f..b61770c 100644 --- a/services/surfaceflinger/LayerBase.cpp +++ b/services/surfaceflinger/LayerBase.cpp @@ -439,7 +439,7 @@ void LayerBase::dump(String8& result, char* buffer, size_t SIZE) const "layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), crop=(%4d,%4d,%4d,%4d), " "isOpaque=%1d, needsDithering=%1d, invalidate=%1d, " "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n", - s.z, s.layerStack, s.transform.tx(), s.transform.ty(), s.active.w, s.active.h, + s.layerStack, s.z, s.transform.tx(), s.transform.ty(), s.active.w, s.active.h, s.active.crop.left, s.active.crop.top, s.active.crop.right, s.active.crop.bottom, isOpaque(), needsDithering(), contentDirty, |