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/
DRecentsTransitionHelper.java389 int fromHeight = (int) (transform.rect.height() * scale);
390 if (fromWidth == 0 || fromHeight == 0) {
397 return drawViewIntoGraphicBuffer(fromWidth, fromHeight, null, 1f, 0xFFff0000);
399 return drawViewIntoGraphicBuffer(fromWidth, fromHeight, taskView, scale, 0);
/frameworks/base/services/core/java/com/android/server/wm/
DAppTransition.java1444 float fromHeight = mTmpFromClipRect.height(); in createRelaunchAnimation() local
1450 if (fromWidth <= toWidth && fromHeight <= toHeight) { in createRelaunchAnimation()
1458 set.addAnimation(new ScaleAnimation(fromWidth / toWidth, 1, fromHeight / toHeight, 1)); in createRelaunchAnimation()
1462 translateAdjustment = (int) (contentInsets.top * fromHeight / toHeight); in createRelaunchAnimation()