From 30abd07051b6b5c45e470ad204b5c2a6a6b48db2 Mon Sep 17 00:00:00 2001 From: Jesse Allen Date: Tue, 20 Nov 2007 12:59:34 -0700 Subject: [PATCH] dibdrv: Basic BitBlt --- dlls/winedib.drv/bitblt.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/winedib.drv/bitblt.c b/dlls/winedib.drv/bitblt.c index 2214cb0eeee..3b07feb182d 100644 --- a/dlls/winedib.drv/bitblt.c +++ b/dlls/winedib.drv/bitblt.c @@ -72,8 +72,10 @@ BOOL DIBDRV_BitBlt( DIBDRVPHYSDEV *physDevDst, INT xDst, INT yDst, INT width, INT height, DIBDRVPHYSDEV *physDevSrc, INT xSrc, INT ySrc, DWORD rop ) { - FIXME("stub\n"); - return TRUE; + TRACE("stub %p %d %d %d %d %p %d %d %u\n", physDevDst, xDst, yDst, width, height, physDevSrc, + xSrc, ySrc, rop); + return DIBDRV_StretchBlt( physDevDst, xDst, yDst, width, height, physDevSrc, xSrc, ySrc, + width, height, rop ); } /*********************************************************************** -- 2.11.4.GIT