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

Commit 48242d80 authored by Chris Craik's avatar Chris Craik Committed by Android Git Automerger
Browse files

am 50a2d633: Merge "[HWUI] Fix invisible views are still shown in popup window"

* commit '50a2d633':
  [HWUI] Fix invisible views are still shown in popup window
parents 1a429047 50a2d633
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2071,7 +2071,9 @@ status_t OpenGLRenderer::drawDisplayList(DisplayList* displayList, Rect& dirty,
        return status | deferredList.flush(*this, dirty);
    }

    return DrawGlInfo::kStatusDone;
    // Even if there is no drawing command(Ex: invisible),
    // it still needs startFrame to clear buffer and start tiling.
    return startFrame();
}

void OpenGLRenderer::outputDisplayList(DisplayList* displayList) {