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

Commit 356b5fe0 authored by Chris Craik's avatar Chris Craik
Browse files

Don't update DisplayLists when dumping

bug:22234438

Updating the displaylist is invalid since this debug method isn't
called on the UI thread, and it defeats the purpose of seeing what
the hierarchy is currently rendering.

Change-Id: I10c5cc6dbae8d304559dfc6e863b0ede158d554f
parent 61d7acae
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2367,8 +2367,7 @@ public final class ViewRootImpl implements ViewParent,
     * @hide
     */
    void outputDisplayList(View view) {
        RenderNode renderNode = view.updateDisplayListIfDirty();
        renderNode.output();
        view.mRenderNode.output();
    }

    /**