Merge "Use current display surface size for custom rotation animation" into rvc-dev am: 281e6cefb5 am: cb01b60a58

Change-Id: Ieb863cb70146b9e75e8e0ff9325968b81e9ed0fb
This commit is contained in:
TreeHugger Robot
2020-04-21 11:18:54 +00:00
committed by Automerger Merge Worker

View File

@@ -597,8 +597,8 @@ class ScreenRotationAnimation {
return startAnimation(initializeBuilder()
.setSurfaceControl(mScreenshotLayer)
.setAnimationLeashParent(mDisplayContent.getOverlayLayer())
.setWidth(mWidth)
.setHeight(mHeight)
.setWidth(mDisplayContent.getSurfaceWidth())
.setHeight(mDisplayContent.getSurfaceHeight())
.build(),
createWindowAnimationSpec(mRotateAlphaAnimation),
this::onAnimationEnd);