IDirectDrawSurface::Blt::SRCCOPY is the default ROP operation, do not

throw error.
This commit is contained in:
Marcus Meissner 2000-12-22 01:39:22 +00:00 committed by Alexandre Julliard
parent 2ece70e77b
commit a337437706
1 changed files with 2 additions and 0 deletions

View File

@ -272,6 +272,8 @@ HRESULT WINAPI IDirectDrawSurface4Impl_Blt(
case WHITENESS:
ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,ddesc.lPitch,~0);
break;
case SRCCOPY: /* well, we do that below ? */
break;
default:
FIXME("Unsupported raster op: %08lx Pattern: %p\n", lpbltfx->dwROP, lpbltfx->u4.lpDDSPattern);
goto error;