Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91764697 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by The Android Open Source Project
Browse files

am b61ae351: Merge change 2747 into donut

Merge commit 'b61ae351'

* commit 'b61ae351':
  log the geomerty of surfaces causing an out of memory in SurfaceFlinger.
parents 8a718a45 b61ae351
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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;