Searched refs:dest_rect (Results 1 - 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_frame.cc32 const DesktopRect& dest_rect) {
33 assert(DesktopRect::MakeSize(size()).ContainsRect(dest_rect));
35 uint8_t* dest = GetFrameDataAtPos(dest_rect.top_left());
36 for (int y = 0; y < dest_rect.height(); ++y) {
37 memcpy(dest, src_buffer, DesktopFrame::kBytesPerPixel * dest_rect.width());
45 const DesktopRect& dest_rect) {
47 DesktopRect::MakeOriginSize(src_pos, dest_rect.size())));
50 src_frame.stride(), dest_rect);
31 CopyPixelsFrom(uint8_t* src_buffer, int src_stride, const DesktopRect& dest_rect) argument
43 CopyPixelsFrom(const DesktopFrame& src_frame, const DesktopVector& src_pos, const DesktopRect& dest_rect) argument
H A Ddesktop_frame.h62 // Copies pixels from a buffer or another frame. |dest_rect| rect must lay
65 const DesktopRect& dest_rect);
68 const DesktopRect& dest_rect);
/external/pdfium/core/fxge/ge/
H A Dcfx_renderdevice.cpp719 FX_RECT dest_rect(left, top,
722 dest_rect.Intersect(m_ClipBox);
723 if (dest_rect.IsEmpty())
725 FX_RECT src_rect(dest_rect.left - left, dest_rect.top - top,
726 dest_rect.left - left + dest_rect.Width(),
727 dest_rect.top - top + dest_rect.Height());
736 int bg_pixel_width = FXSYS_round(dest_rect
[all...]
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_imagerenderer.cpp477 FX_RECT dest_rect = clip_box; local
478 dest_rect.Intersect(image_rect);
480 dest_rect.left - image_rect.left, dest_rect.top - image_rect.top,
481 dest_rect.right - image_rect.left, dest_rect.bottom - image_rect.top);
485 m_pRenderStatus->CompositeDIBitmap(pStretched.get(), dest_rect.left,
486 dest_rect.top, m_FillArgb, m_BitmapAlpha,
/external/pdfium/core/fxge/dib/
H A Dfx_dib_main.cpp389 FX_RECT dest_rect(src_rect.left + x_offset, src_rect.top + y_offset,
392 dest_rect.Intersect(dest_bound);
394 dest_rect.Intersect(pClipRgn->GetBox());
396 dest_left = dest_rect.left;
397 dest_top = dest_rect.top;
400 width = dest_rect.right - dest_rect.left;
401 height = dest_rect.bottom - dest_rect.top;
H A Dfx_dib_composite.cpp4857 FX_RECT& dest_rect,
4867 m_DestLeft = dest_rect.left;
4868 m_DestTop = dest_rect.top;
4869 m_DestWidth = dest_rect.Width();
4870 m_DestHeight = dest_rect.Height();
4853 Compose(CFX_DIBitmap* pDest, const CFX_ClipRgn* pClipRgn, int bitmap_alpha, uint32_t mask_color, FX_RECT& dest_rect, bool bVertical, bool bFlipX, bool bFlipY, bool bRgbByteOrder, int alpha_flag, void* pIccTransform, int blend_type) argument
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffwidget.cpp700 FX_RECT dest_rect = clip_box; local
701 dest_rect.Intersect(image_rect);
703 dest_rect.left - image_rect.left, dest_rect.top - image_rect.top,
704 dest_rect.right - image_rect.left, dest_rect.bottom - image_rect.top);
708 CompositeDIBitmap(pStretched.get(), dest_rect.left, dest_rect.top,
/external/pdfium/core/fxge/agg/
H A Dfx_agg_driver.cpp1677 FX_RECT dest_rect(dest_left, dest_top, dest_left + dest_width,
1679 dest_rect.Normalize();
1680 FX_RECT dest_clip = dest_rect;
1685 dest_clip.Offset(-dest_rect.left, -dest_rect.top);
/external/pdfium/core/fxge/
H A Dfx_dib.h527 FX_RECT& dest_rect,
/external/pdfium/core/fxge/skia/
H A Dfx_skia_device.cpp1949 FX_RECT dest_rect(dest_left, dest_top, dest_left + dest_width,
1951 dest_rect.Normalize();
1952 FX_RECT dest_clip = dest_rect;
1957 dest_clip.Offset(-dest_rect.left, -dest_rect.top);

Completed in 1226 milliseconds