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

Commit f6664567 authored by Romain Guy's avatar Romain Guy
Browse files

Don't draw with invalid display lists

Bug #10301674

Change-Id: I900322dcb9b53f0eb82741c94d4ab1eaf939259e
parent 9622adf6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1449,7 +1449,7 @@ public final class ViewRootImpl implements ViewParent,
                            }

                            DisplayList displayList = mView.mDisplayList;
                            if (displayList != null) {
                            if (displayList != null && displayList.isValid()) {
                                layerCanvas.drawDisplayList(displayList, null,
                                        DisplayList.FLAG_CLIP_CHILDREN);
                            } else {