Home | History | Annotate | Download | only in dib

Lines Matching defs:dest_width

187 CFX_DIBitmap* CFX_DIBSource::StretchTo(int dest_width, int dest_height, FX_DWORD flags, const FX_RECT* pClip) const

189 FX_RECT clip_rect(0, 0, FXSYS_abs(dest_width), FXSYS_abs(dest_height));
196 if (dest_width == m_Width && dest_height == m_Height) {
201 if (stretcher.Start(&storer, this, dest_width, dest_height, clip_rect, flags)) {
234 int dest_width = result_rect.Width();
237 result_clip = _FXDIB_SwapClipBox(result_clip, dest_width, dest_height, pDestMatrix->c > 0, pDestMatrix->b < 0);
238 m_Stretcher.Start(&m_Storer, pSrc, dest_height, dest_width, result_clip, flags);
243 int dest_width = pDestMatrix->a > 0 ? (int)FXSYS_ceil(pDestMatrix->a) : (int)FXSYS_floor(pDestMatrix->a);
246 m_Stretcher.Start(&m_Storer, pSrc, dest_width, dest_height, result_clip, flags);