winex11: Reduce console spam for AlphaBlend deficiencies.

This commit is contained in:
James Hawkins 2008-08-04 11:52:54 -05:00 committed by Alexandre Julliard
parent 92ed390b28
commit 30b6954c3d
1 changed files with 6 additions and 1 deletions

View File

@ -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;
}