OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mImageBounds
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java
73
protected Rect
mImageBounds
= new Rect();
330
canvas.clipRect(
mImageBounds
);
367
d.roundOut(
mImageBounds
);
413
mShaderMatrix.preTranslate(-x +
mImageBounds
.left, -y +
mImageBounds
.top);
414
float scaleImageX =
mImageBounds
.width() / (float) image.getWidth();
415
float scaleImageY =
mImageBounds
.height() / (float) image.getHeight();
421
drawShadow(canvas,
mImageBounds
); // as needed
423
canvas.clipRect(
mImageBounds
);
484
drawShadow(canvas,
mImageBounds
); // as neede
[
all
...]
ImageCrop.java
41
private RectF
mImageBounds
= new RectF();
236
||
mImageBounds
.width() != width ||
mImageBounds
.height() != height
238
mImageBounds
.set(0, 0, width, height);
243
mCropObj = new CropObject(
mImageBounds
, scaledCrop, (int) mUpdateHolder.straighten);
265
mImageBounds
.set(0, 0, bitmap.getWidth(), bitmap.getHeight());
GradControl.java
49
Rect
mImageBounds
;
121
mImageBounds
= new Rect(imageBounds);
125
return (!
mImageBounds
.contains((int) ((x1 + x2) / 2), (int) ((y1 + y2) / 2)));
EclipseControl.java
61
private Rect
mImageBounds
;
104
mImageBounds
= new Rect(imageBounds);
108
return (!
mImageBounds
.contains((int) x1, (int) y1));
/packages/apps/Camera2/src/com/android/camera/crop/
CropView.java
40
private RectF
mImageBounds
= new RectF();
297
mImageBounds
= new RectF(0, 0, mBitmap.getWidth(), mBitmap.getHeight());
305
mCropObj = new CropObject(
mImageBounds
,
mImageBounds
, 0);
312
if (!CropDrawingUtils.setImageToScreenMatrix(mDisplayMatrix,
mImageBounds
, mScreenBounds,
330
mScreenImageBounds.set(
mImageBounds
);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropView.java
41
private RectF
mImageBounds
= new RectF();
298
mImageBounds
= new RectF(0, 0, mBitmap.getWidth(), mBitmap.getHeight());
306
mCropObj = new CropObject(
mImageBounds
,
mImageBounds
, 0);
313
if (!CropDrawingUtils.setImageToScreenMatrix(mDisplayMatrix,
mImageBounds
, mScreenBounds,
331
mScreenImageBounds.set(
mImageBounds
);
Completed in 109 milliseconds