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

Commit 037faad0 authored by Michael Jurka's avatar Michael Jurka Committed by Android Git Automerger
Browse files

am ab779e0b: Merge "Increase bitmap memory cap for widgets (Bug 6597440)" into jb-dev

* commit 'ab779e0b':
  Increase bitmap memory cap for widgets (Bug 6597440)
parents cc6cf51b ab779e0b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -190,7 +190,9 @@ class AppWidgetServiceImpl {
        WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
        int height = wm.getDefaultDisplay().getRawHeight();
        int width = wm.getDefaultDisplay().getRawWidth();
        mMaxWidgetBitmapMemory = 4 * width * height;
        // Cap memory usage at 1.5 times the size of the display
        // 1.5 * 4 bytes/pixel * w * h ==> 6 * w * h
        mMaxWidgetBitmapMemory = 6 * width * height;
    }

    public void systemReady(boolean safeMode) {