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

Commit 50a2d633 authored by Chris Craik's avatar Chris Craik Committed by Gerrit Code Review
Browse files

Merge "[HWUI] Fix invisible views are still shown in popup window"

parents fc6346d4 3a1bffa8
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) {