Home
last modified time | relevance | path

Searched refs:mTmpTransform (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/pip/
H A DPipSurfaceTransactionHelper.java34 private final Matrix mTmpTransform = new Matrix(); field in PipSurfaceTransactionHelper
53 mTmpTransform.setRectToRect(mTmpSourceRectF, mTmpDestinationRectF, Matrix.ScaleToFit.FILL); in scale()
55 tx.setMatrix(leash, mTmpTransform, mTmpFloat9) in scale()
70 mTmpTransform.setRectToRect(mTmpSourceRectF, mTmpDestinationRectF, Matrix.ScaleToFit.FILL); in scale()
71 mTmpTransform.postRotate(degree, 0, 0); in scale()
73 tx.setMatrix(leash, mTmpTransform, mTmpFloat9) in scale()
106 mTmpTransform.setScale(scale, scale); in scaleAndCrop()
108 tx.setMatrix(leash, mTmpTransform, mTmpFloat9) in scaleAndCrop()
129 mTmpTransform.setRotate(degree, 0, 0); in scaleAndRotate()
130 mTmpTransform.postScale(scale, scale); in scaleAndRotate()
[all …]
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
H A DPipSurfaceTransactionHelper.java34 private final Matrix mTmpTransform = new Matrix(); field in PipSurfaceTransactionHelper
98 mTmpTransform.setRectToRect(mTmpSourceRectF, mTmpDestinationRectF, Matrix.ScaleToFit.FILL); in scale()
99 mTmpTransform.postRotate(degrees, in scale()
101 tx.setMatrix(leash, mTmpTransform, mTmpFloat9); in scale()
137 mTmpTransform.setScale(scale, scale); in scaleAndCrop()
138 tx.setMatrix(leash, mTmpTransform, mTmpFloat9) in scaleAndCrop()
182 mTmpTransform.setScale(scale, scale); in rotateAndScaleWithCrop()
183 mTmpTransform.postRotate(degrees); in rotateAndScaleWithCrop()
184 mTmpTransform.postTranslate(positionX, positionY); in rotateAndScaleWithCrop()
185 tx.setMatrix(leash, mTmpTransform, mTmpFloat9).setCrop(leash, crop); in rotateAndScaleWithCrop()
H A DPipContentOverlay.java183 private final Matrix mTmpTransform = new Matrix(); field in PipContentOverlay.PipAppIconOverlay
217 mTmpTransform.reset(); in onAnimationUpdate()
219 mTmpTransform.postScale( in onAnimationUpdate()
224 atomicTx.setMatrix(mLeash, mTmpTransform, mTmpFloat9) in onAnimationUpdate()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashScreenExitAnimationUtils.java299 private final Matrix mTmpTransform = new Matrix(); field in SplashScreenExitAnimationUtils.ShiftUpAnimation
331 mTmpTransform.setTranslate(0 /* dx */, dy); in onAnimationProgress()
336 mTmpTransform.postTranslate(mFirstWindowFrame.left, in onAnimationProgress()
342 .withMatrix(mTmpTransform) in onAnimationProgress()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
H A DPhonePipMenuController.java121 private final float[] mTmpTransform = new float[9]; field in PhonePipMenuController