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

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
StatsFilter.java 49 private Quad mCropRect = Quad.fromRect(0f, 0f, 1f, 1f);
76 port.bindToFieldNamed("mCropRect");
100 calcMeanAndStd(pixelBuffer, inputFrame.getWidth(), inputFrame.getHeight(), mCropRect);
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]);
  /frameworks/native/include/gui/
GLConsumer.h 389 // mCropRect is the crop rectangle passed to EGL when mEglImage was
391 Rect mCropRect;
  /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...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorVideoDecoder_internal.h 115 ARect mCropRect; // These are obtained from kKeyCropRect.
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.h 189 ARect 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...]

Completed in 320 milliseconds