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

Commit aec6b474 authored by Robert Carr's avatar Robert Carr Committed by android-build-merger
Browse files

Merge "SurfaceView: Fix missing override for SurfaceControl proxy" into oc-dev

am: 42b3610a

Change-Id: I3238399a26917f80bd4e33bb20142f62076e6f4f
parents 20eb7468 42b3610a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1196,6 +1196,12 @@ public class SurfaceView extends View implements ViewRootImpl.WindowStoppedCallb
            mBackgroundControl.deferTransactionUntil(handle, frame);
        }

        @Override
        public void deferTransactionUntil(Surface barrier, long frame) {
            super.deferTransactionUntil(barrier, frame);
            mBackgroundControl.deferTransactionUntil(barrier, frame);
        }

        void updateBackgroundVisibility() {
            if (mOpaque && mVisible) {
                mBackgroundControl.show();