HomeSort by relevance Sort by last modified time
    Searched refs:mCrop (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterCropRepresentation.java 35 RectF mCrop = getNil();
50 this(m.mCrop);
59 mCrop.set(r.mCrop);
68 if (mCrop.bottom != crop.mCrop.bottom
69 || mCrop.left != crop.mCrop.left
70 || mCrop.right != crop.mCrop.righ
    [all...]
  /hardware/intel/img/hwcomposer/include/
DataBuffer.h 74 mCrop.x = x; mCrop.y = y; mCrop.w = w; mCrop.h = h; }
75 crop_t& getCrop() { return mCrop; }
93 memset(&mCrop, 0, sizeof(crop_t));
98 crop_t mCrop;
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamBufferListener.h 32 Rect mCrop;
  /external/replicaisland/src/com/replica/replicaisland/
DrawableBitmap.java 30 private int mCrop[];
40 mCrop = new int[4];
132 OpenGLSystem.setTextureCrop(mCrop);
196 mCrop[0] = left;
197 mCrop[1] = bottom;
198 mCrop[2] = width;
199 mCrop[3] = -height;
203 return mCrop;
  /hardware/intel/img/hwcomposer/ips/anniedale/
AnnCursorPlane.cpp 32 memset(&mCrop, 0, sizeof(mCrop));
52 // clear mCrop once reset
53 memset(&mCrop, 0, sizeof(mCrop));
156 if (mCrop.w == 0 && mCrop.h == 0) {
157 mCrop = mSrcCrop;
162 if (i >= mCrop.h || j >= mCrop.w)
    [all...]
AnnCursorPlane.h 53 crop_t mCrop;
  /frameworks/native/include/gui/
BufferItem.h 60 // mCrop is the current crop rectangle for this buffer slot.
61 Rect mCrop;
IGraphicBufferConsumer.h 67 // mCrop is the current crop rectangle for this buffer slot.
68 Rect mCrop;
Surface.h 225 // mCrop is the crop rectangle that will be used for the next buffer
227 Rect mCrop;
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraStream.cpp 275 memset(&mCrop, 0, sizeof(mm_camera_rect_t));
308 memset(&mCrop, 0, sizeof(mm_camera_rect_t));
342 mCrop.offset_x = v4l2_crop.left;
343 mCrop.offset_y = v4l2_crop.top;
344 mCrop.width = v4l2_crop.width;
345 mCrop.height = v4l2_crop.height;
  /frameworks/native/libs/gui/
BufferItem.cpp 36 mCrop.makeInvalid();
45 bufferItem.mCrop = mCrop;
59 size_t c = sizeof(mCrop) +
129 FlattenableUtils::write(buffer, size, mCrop);
171 FlattenableUtils::read(buffer, size, mCrop);
CpuConsumer.cpp 133 b.mCrop,
139 b.mCrop,
159 b.mCrop,
165 b.mCrop,
199 nativeBuffer->crop = b.mCrop;
BufferQueueCore.cpp 91 current->mCrop.left, current->mCrop.top, current->mCrop.right,
92 current->mCrop.bottom, current->mTransform, current->mTimestamp,
IGraphicBufferConsumer.cpp 47 mCrop.makeInvalid();
51 size_t c = sizeof(mCrop) +
131 FlattenableUtils::write(buffer, size, mCrop);
173 FlattenableUtils::read(buffer, size, mCrop);
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_bufferqueue.h 83 mBufferSlots[slot].mCrop = item.mCrop;
88 mDeferThread->add(graphic_buffer, item.mCrop, mCounter++, item.mBuf);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 73 private RectF mCrop = new RectF();
114 reps.add(new FilterCropRepresentation(mCrop));
235 mCrop.set(tmp);
236 m.mapRect(mCrop);
237 FilterCropRepresentation.findNormalizedCrop(mCrop, imageWidth, imageHeight);
271 mPriorCropAtUp.set(mCrop);
  /frameworks/av/services/camera/libcameraservice/gui/
RingBufferConsumer.h 90 // mCrop is the current crop rectangle for this buffer slot.
91 Rect mCrop;
RingBufferConsumer.cpp 81 cur.mCrop = item.mCrop;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 344 GL11Ext.GL_TEXTURE_CROP_RECT_OES, label.mCrop, 0);
381 mCrop = crop;
387 public int[] mCrop;
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraStream.cpp 324 memset(&mCrop, 0, sizeof(mm_camera_ch_crop_t));
335 memset(&mCrop, 0, sizeof(mm_camera_ch_crop_t));
  /device/lge/mako/camera/
QCameraStream.cpp 322 memset(&mCrop, 0, sizeof(mm_camera_ch_crop_t));
333 memset(&mCrop, 0, sizeof(mm_camera_ch_crop_t));
  /frameworks/rs/
rsGrallocConsumer.cpp 102 b.mCrop,
114 b.mCrop,
144 //mAlloc->crop = b.mCrop;
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 85 HighlightView mCrop;
216 if (mCrop == null) {
234 Rect srcRect = mCrop.getCropRect();
253 Rect r = mCrop.getCropRect();
349 extras.putString("rect", mCrop.getCropRect().toString());
542 mCrop = mImageView.mHighlightViews.get(0);
543 mCrop.setFocus(true);
677 cropImage.mCrop = hv;
  /device/moto/shamu/camera/QCamera/HAL2/core/src/
QCameraStream.cpp 354 memset(&mCrop, 0, sizeof(mm_camera_rect_t));
375 memset(&mCrop, 0, sizeof(mm_camera_rect_t));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 364 RectF mCrop = null;
392 mCrop = cropBounds;
426 if (mCrop != null && mPhoto != null && mOrig != null) {
427 RectF trueCrop = CropMath.getScaledCropBounds(mCrop, mPhoto, mOrig);
441 Bitmap ret = getCroppedImage(img, mCrop, mPhoto);
465 RectF trueCrop = CropMath.getScaledCropBounds(mCrop, mPhoto, mOrig);

Completed in 781 milliseconds

1 2