Home | History | Annotate | Download | only in dib

Lines Matching defs:dest_height

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)) {
235 int dest_height = result_rect.Height();
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);
244 int dest_height = pDestMatrix->d > 0 ? (int) - FXSYS_ceil(pDestMatrix->d) : (int) - FXSYS_floor(pDestMatrix->d);
246 m_Stretcher.Start(&m_Storer, pSrc, dest_width, dest_height, result_clip, flags);