Commit 30b6954c authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

winex11: Reduce console spam for AlphaBlend deficiencies.

parent 92ed390b
......@@ -1569,7 +1569,12 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
if (!devSrc->bitmap || GetObjectW( devSrc->bitmap->hbitmap, sizeof(dib), &dib ) != sizeof(dib))
{
FIXME("not a dibsection\n");
static BOOL out = FALSE;
if (!out)
{
FIXME("not a dibsection\n");
out = TRUE;
}
return FALSE;
}
......
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