Zebediah Figura (@zfigura) commented about dlls/wined3d/device.c:
case WINED3D_RS_LASTPIXEL:
if (state->rs[WINED3D_RS_LASTPIXEL])
{
TRACE("Last Pixel Drawing Enabled\n");
}
else
{
static BOOL warned;
if (!warned) {
FIXME("Last Pixel Drawing Disabled, not handled yet\n");
warned = TRUE;
} else {
TRACE("Last Pixel Drawing Disabled, not handled yet\n");
}
}
break;
While we're moving, let's take the opportunity to clean this up a little. The TRACE messages aren't really necessary and can be deleted, and let's also fix up the code style to match the modern wined3d standard (braces on their own line, messages end with a period, prefer bool/true/false to BOOL/TRUE/FALSE).