Home
last modified time | relevance | path

Searched refs:fromHeight (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DRecentsTransitionComposer.java142 int fromHeight = (int) (transform.rect.height() * scale); in composeTaskBitmap() local
143 if (fromWidth == 0 || fromHeight == 0) { in composeTaskBitmap()
150 return RecentsTransition.drawViewIntoHardwareBitmap(fromWidth, fromHeight, null, 1f, in composeTaskBitmap()
153 return RecentsTransition.drawViewIntoHardwareBitmap(fromWidth, fromHeight, taskView, in composeTaskBitmap()
/frameworks/base/services/core/java/com/android/server/wm/
DAppTransition.java1483 float fromHeight = mTmpFromClipRect.height(); in createRelaunchAnimation() local
1489 if (fromWidth <= toWidth && fromHeight <= toHeight) { in createRelaunchAnimation()
1497 set.addAnimation(new ScaleAnimation(fromWidth / toWidth, 1, fromHeight / toHeight, 1)); in createRelaunchAnimation()
1501 translateAdjustment = (int) (contentInsets.top * fromHeight / toHeight); in createRelaunchAnimation()