HomeSort by relevance Sort by last modified time
    Searched refs:mCropRect (Results 1 - 11 of 11) sorted by null

  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 248 moveBy(dx * (mCropRect.width() / r.width()),
249 dy * (mCropRect.height() / r.height()));
260 float xDelta = dx * (mCropRect.width() / r.width());
261 float yDelta = dy * (mCropRect.height() / r.height());
271 mCropRect.offset(dx, dy);
274 mCropRect.offset(
275 Math.max(0, mImageRect.left - mCropRect.left),
276 Math.max(0, mImageRect.top - mCropRect.top));
278 mCropRect.offset(
279 Math.min(0, mImageRect.right - mCropRect.right)
    [all...]
CropImage.java 773 float [] coordinates = new float[] {hv.mCropRect.centerX(),
774 hv.mCropRect.centerY()};
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CropFilter.java 37 private Quad mCropRect = Quad.fromRect(0f, 0f, 1f, 1f);
65 port.bindToFieldNamed("mCropRect");
93 int[] croppedDims = { (int)FloatMath.ceil(mCropRect.xEdge().length() * inDims[0]),
94 (int)FloatMath.ceil(mCropRect.yEdge().length() * inDims[1]) };
109 mShader.setSourceQuad(mCropRect);
117 sourceQuad = mCropRect;
125 Quad sourceQuad = mCropRect.scale2(inDims[0], inDims[1]);
StatsFilter.java 49 private Quad mCropRect = Quad.fromRect(0f, 0f, 1f, 1f);
76 port.bindToFieldNamed("mCropRect");
100 calcMeanAndStd(pixelBuffer, inputFrame.getWidth(), inputFrame.getHeight(), mCropRect);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 112 private Rect mCropRect = new Rect();
559 final int cropWidth = mCropRect.right - mCropRect.left;
565 matrix.postTranslate(-mCropRect.left, -mCropRect.top);
637 canvas.clipRect(mCropRect);
645 canvas.drawRect(mCropRect, sCropPaint);
666 mCropRect.set(cropLeft, cropTop, cropRight, cropBottom);
761 mTempDst.set(mCropRect);
861 final float maxLeft = mAllowCrop ? mCropRect.left : 0.0f
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorVideoDecoder_internal.h 115 ARect mCropRect; // These are obtained from kKeyCropRect.
  /frameworks/native/include/gui/
GLConsumer.h 389 // mCropRect is the crop rectangle passed to EGL when mEglImage was
391 Rect mCropRect;
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.h 189 ARect mCropRect;
PreviewPlayer.cpp     [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoDecoder.cpp     [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 316 } else if (mEglSlots[slot].mCropRect != item->mCrop) {
383 mEglSlots[buf].mCropRect = item.mCrop;
    [all...]

Completed in 184 milliseconds