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

  /frameworks/base/services/surfaceflinger/
Layer.cpp 64 mCurrentCrop.makeInvalid();
214 hwcl->sourceCrop.left = mCurrentCrop.left;
215 hwcl->sourceCrop.top = mCurrentCrop.top;
216 hwcl->sourceCrop.right = mCurrentCrop.right;
217 hwcl->sourceCrop.bottom = mCurrentCrop.bottom;
384 return !mCurrentCrop.isEmpty();
415 if ((crop != mCurrentCrop) ||
419 mCurrentCrop = crop;
Layer.h 109 Rect mCurrentCrop;
  /frameworks/base/libs/gui/
SurfaceTexture.cpp 831 mCurrentCrop = mSlots[buf].mCrop;
908 if (!mCurrentCrop.isEmpty()) {
924 if (mCurrentCrop.left > 0) {
925 tx = float(mCurrentCrop.left + 1) / float(buf->getWidth());
930 if (mCurrentCrop.right < int32_t(buf->getWidth())) {
933 if (mCurrentCrop.bottom < int32_t(buf->getHeight())) {
934 ty = (float(buf->getHeight() - mCurrentCrop.bottom) + 1.0f) /
    [all...]
  /frameworks/base/include/gui/
SurfaceTexture.h 411 // mCurrentCrop is the crop rectangle that applies to the current texture.
413 Rect mCurrentCrop;

Completed in 43 milliseconds