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

  /external/webkit/WebCore/svg/graphics/filters/
SVGFEOffset.cpp 89 FloatRect dstRect = FloatRect(m_dx + m_in->scaledSubRegion().x() - scaledSubRegion().x(),
94 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, dstRect);
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java     [all...]
CropImage.java 235 Rect dstRect = new Rect(0, 0, mOutputX, mOutputY);
237 int dx = (srcRect.width() - dstRect.width()) / 2;
238 int dy = (srcRect.height() - dstRect.height()) / 2;
243 // If the dstRect is too big, use the center part of it.
244 dstRect.inset(Math.max(0, -dx), Math.max(0, -dy));
247 canvas.drawBitmap(mBitmap, srcRect, dstRect, null);
266 Rect dstRect = new Rect(0, 0, width, height);
267 canvas.drawBitmap(mBitmap, r, dstRect, null);
  /packages/apps/Gallery3D/src/com/cooliris/media/
CropImage.java 370 Rect dstRect = new Rect(0, 0, width, height);
371 canvas.drawBitmap(mBitmap, r, dstRect, null);
410 Rect dstRect = new Rect(0, 0, mOutputX, mOutputY);
412 int dx = (srcRect.width() - dstRect.width()) / 2;
413 int dy = (srcRect.height() - dstRect.height()) / 2;
418 // If the dstRect is too big, use the center part of it.
419 dstRect.inset(Math.max(0, -dx), Math.max(0, -dy));
422 canvas.drawBitmap(mBitmap, srcRect, dstRect, null);
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 607 HDC GraphicsContext::getWindowsContext(const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
614 void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
    [all...]

Completed in 63 milliseconds