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

Commit 06837418 authored by Chia-I Wu's avatar Chia-I Wu
Browse files

surfaceflinger: clear HWC layers in Layer::onRemoved

Explicitly destroy HWC layers in Layer::onRemoved rather than doing
that implicitly in the destructor.  The layer may be destructed by
any thread that holds a sp<Layer>, but only the main thread should
talk to the composer.

Bug: 38151478
Bug: 37978067
Test: manual
Change-Id: If6fcfaa5a70d247b751f2b4d9aec9eca890e3aa5
parent 5e74c65a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -296,6 +296,9 @@ void Layer::onRemoved() {
    }

    mSurfaceFlingerConsumer->abandon();

    clearHwcLayers();

    for (const auto& child : mCurrentChildren) {
        child->onRemoved();
    }