wined3d: Print lastpixel state fixme only once.
This commit is contained in:
parent
d9e8a0f63e
commit
09e7791cba
|
@ -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 {
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue