Commit 15c4754e authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32: stretch_bitmapinfo may need to adjust the dst visrect.

parent c6e483cb
......@@ -885,7 +885,7 @@ done:
}
DWORD stretch_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
const BITMAPINFO *dst_info, void *dst_bits, const struct bitblt_coords *dst,
const BITMAPINFO *dst_info, void *dst_bits, struct bitblt_coords *dst,
INT mode )
{
FIXME( "should stretch %dx%d -> %dx%d\n", src->width, src->height, dst->width, dst->height );
......
......@@ -255,7 +255,7 @@ extern DWORD convert_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, str
const BITMAPINFO *dst_info, void *dst_bits ) DECLSPEC_HIDDEN;
extern DWORD stretch_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
const BITMAPINFO *dst_info, void *dst_bits, const struct bitblt_coords *dst,
const BITMAPINFO *dst_info, void *dst_bits, struct bitblt_coords *dst,
INT mode ) DECLSPEC_HIDDEN;
/* driver.c */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment