Commit c7089361 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winex11.drv: Quiet a noisy FIXME.

parent 193d13c4
......@@ -1311,7 +1311,8 @@ static BOOL client_side_dib_copy( X11DRV_PDEVICE *physDevSrc, INT xSrc, INT ySrc
}
if (dstDib.dsBm.bmBitsPixel <= 8)
{
FIXME("potential optimization: client-side color-index mode DIB copy\n");
static BOOL fixme_once;
if(!fixme_once++) FIXME("potential optimization: client-side color-index mode DIB copy\n");
return FALSE;
}
if (!(srcDib.dsBmih.biCompression == BI_BITFIELDS &&
......
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