Merge change 2747 into donut

* changes:
  log the geomerty of surfaces causing an out of memory in SurfaceFlinger.
This commit is contained in:
Android (Google) Code Review
2009-05-29 14:55:48 -07:00

View File

@ -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;