Skip to content
Snippets Groups Projects
Commit a3374377 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

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

throw error.
parent 2ece70e7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment