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

Commit f7a051b9 authored by David Stevens's avatar David Stevens Committed by android-build-merger
Browse files

Merge "Only use WM screen rotation animation on default display" into oc-mr1-dev am: f394ac4e

am: 8b633d19

Change-Id: I7909790b1a06df72d3bfd4c92beb29e0c3c43e07
parents 314bc7be 8b633d19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ class ScreenRotationAnimation {
                // capture a screenshot into the surface we just created
                Surface sur = new Surface();
                sur.copyFrom(mSurfaceControl);
                // FIXME: we should use the proper display
                // TODO(multidisplay): we should use the proper display
                SurfaceControl.screenshot(SurfaceControl.getBuiltInDisplay(
                        SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), sur);
                mSurfaceControl.setLayerStack(display.getLayerStack());
+2 −2
Original line number Diff line number Diff line
@@ -6075,7 +6075,8 @@ public class WindowManagerService extends IWindowManager.Stub
            Debug.startMethodTracing(file.toString(), 8 * 1024 * 1024);
        }

        if (CUSTOM_SCREEN_ROTATION) {
        // TODO(multidisplay): rotation on non-default displays
        if (CUSTOM_SCREEN_ROTATION && displayContent.isDefaultDisplay) {
            mExitAnimId = exitAnim;
            mEnterAnimId = enterAnim;
            ScreenRotationAnimation screenRotationAnimation =
@@ -6087,7 +6088,6 @@ public class WindowManagerService extends IWindowManager.Stub
            // Check whether the current screen contains any secure content.
            boolean isSecure = displayContent.hasSecureWindowOnScreen();

            // TODO(multidisplay): rotation on main screen only.
            displayContent.updateDisplayInfo();
            screenRotationAnimation = new ScreenRotationAnimation(mContext, displayContent,
                    mFxSession, inTransaction, mPolicy.isDefaultOrientationForced(), isSecure,