Searched refs:fullRect (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | ImageRedEye.java | 115 RectF fullRect = new RectF(); in drawPoint() local 116 originalRotateToScreen.mapRect(fullRect, rect); in drawPoint() 118 canvas.drawRect(fullRect, paint); in drawPoint() 119 canvas.drawLine(fullRect.centerX(), fullRect.top, in drawPoint() 120 fullRect.centerX(), fullRect.bottom, paint); in drawPoint() 121 canvas.drawLine(fullRect.left, fullRect.centerY(), in drawPoint() 122 fullRect.right, fullRect.centerY(), paint); in drawPoint() 126 float dx = fullRect.centerX() - dw / 2; in drawPoint() 127 float dy = fullRect.centerY() - dh / 2; in drawPoint()
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | Blend.cpp | 210 MosaicRect fullRect; in runBlend() local 212 fullRect.left = (int) floor(global_rect.lft); // min-x in runBlend() 213 fullRect.top = (int) floor(global_rect.bot); // min-y in runBlend() 214 fullRect.right = (int) ceil(global_rect.rgt); // max-x in runBlend() 215 fullRect.bottom = (int) ceil(global_rect.top);// max-y in runBlend() 216 Mwidth = (unsigned short) (fullRect.right - fullRect.left + 1); in runBlend() 217 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1); in runBlend() 223 xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) - fullRect.left + 1); in runBlend() 224 xRightMost = min(Mwidth - 1, min(xRightCorners[0], xRightCorners[1]) - fullRect.left - 1); in runBlend() 226 yTopMost = max(0, max(yTopCorners[0], yTopCorners[1]) - fullRect.top + 1); in runBlend() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | PhotoView.java | 1820 Rect fullRect = bounds(); in buildFallbackEffect() local 1831 if (!Rect.intersects(fullRect, rect)) continue; in buildFallbackEffect()
|