Commit a3374377 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

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

throw error.
parent 2ece70e7
......@@ -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;
......
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