wined3d: Print lastpixel state fixme only once.

This commit is contained in:
Jan Zerebecki 2007-03-27 09:27:52 +02:00 committed by Alexandre Julliard
parent d9e8a0f63e
commit 09e7791cba
1 changed files with 7 additions and 1 deletions

View File

@ -1254,7 +1254,13 @@ static void state_lastpixel(DWORD state, IWineD3DStateBlockImpl *stateblock, Win
if(stateblock->renderState[WINED3DRS_LASTPIXEL]) {
TRACE("Last Pixel Drawing Enabled\n");
} else {
FIXME("Last Pixel Drawing Disabled, not handled yet\n");
static BOOL first = TRUE;
if(first) {
FIXME("Last Pixel Drawing Disabled, not handled yet\n");
first = FALSE;
} else {
TRACE("Last Pixel Drawing Disabled, not handled yet\n");
}
}
}