Home
last modified time | relevance | path

Searched refs:dstRect (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DFrameImage2D.java145 FrameImage2D srcImage, FrameImage2D dstImage, RectF srcRect, RectF dstRect) { in gpuImageCopy() argument
150 idShader.setTargetRect(dstRect); in gpuImageCopy()
158 FrameImage2D srcImage, FrameImage2D dstImage, RectF srcRect, RectF dstRect) { in cpuImageCopy() argument
164 Rect dstIRect = new Rect((int) dstRect.left * srcImage.getWidth(), in cpuImageCopy()
165 (int) dstRect.top * srcImage.getHeight(), in cpuImageCopy()
166 (int) dstRect.right * srcImage.getWidth(), in cpuImageCopy()
167 (int) dstRect.bottom * srcImage.getHeight()); in cpuImageCopy()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DBitmapHelper.java47 final RectF dstRect = new RectF(0, 0, width, height); in createCircularClip() local
49 m.setRectToRect(srcRect, dstRect, Matrix.ScaleToFit.CENTER); in createCircularClip()
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
DUiObject.java197 Rect dstRect = destObj.getVisibleBounds(); in dragTo() local
199 dstRect.centerX(), dstRect.centerY(), steps, true); in dragTo()
/frameworks/base/core/jni/android/graphics/
DSkiaCanvas.cpp572 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom); in drawBitmap() local
573 mCanvas->drawBitmapRectToRect(bitmap, &srcRect, dstRect, paint); in drawBitmap()