Make StretchBlt() call NtGdiStretchBlt() if src and dest sizes differs, otherwise calls BitBlt() as it was already done.

svn path=/trunk/; revision=6862
This commit is contained in:
Aleksey Bragin 2003-12-04 21:37:07 +00:00
parent 578a12d532
commit 08340b2f6f

View file

@ -264,10 +264,21 @@ StretchBlt(
nYOriginSrc, // y-coordinate of source upper-left corner
dwRop // raster operation code
);
} else
{
DPRINT1("FIXME: StretchBlt is in development phase now...\n");
return NtGdiStretchBlt(hdcDest,
nXOriginDest,
nYOriginDest,
nWidthDest,
nHeightDest,
hdcSrc,
nXOriginSrc,
nYOriginSrc,
nWidthSrc,
nHeightSrc,
dwRop);
}
DPRINT1("FIXME: StretchBlt can only Blt, not Stretch!\n");
return FALSE;
}