diff options
| author | 2009-07-25 19:52:22 -0700 | |
|---|---|---|
| committer | 2009-07-25 21:15:25 -0700 | |
| commit | 2af1b3db3d4f687d008db74b150f149e956b4bc6 (patch) | |
| tree | 39d7d5bf15667c01f9b6dfe02bdd0e7fa36cd303 /libs/surfaceflinger/LayerBitmap.cpp | |
| parent | 8ecb36eec61f119f500a805b82438aadb3396a19 (diff) | |
| parent | cf4550c3198d6b3d92cdc52707fe70d7cc0caa9f (diff) | |
Merge korg/donut into korg/master
Diffstat (limited to 'libs/surfaceflinger/LayerBitmap.cpp')
| -rw-r--r-- | libs/surfaceflinger/LayerBitmap.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/surfaceflinger/LayerBitmap.cpp b/libs/surfaceflinger/LayerBitmap.cpp index e84435088a7c..397ddc82e12a 100644 --- a/libs/surfaceflinger/LayerBitmap.cpp +++ b/libs/surfaceflinger/LayerBitmap.cpp @@ -114,7 +114,9 @@ status_t LayerBitmap::setBits(uint32_t w, uint32_t h, uint32_t alignment, } if (mBitsMemory==0 || mSurface.data==0) { - LOGE("not enough memory for layer bitmap size=%u", size); + LOGE("not enough memory for layer bitmap " + "size=%u (w=%d, h=%d, stride=%d, format=%d)", + size, int(w), int(h), int(stride), int(format)); allocator->dump("LayerBitmap"); mSurface.data = 0; mSize = -1U; |