wined3d: Prevent some console spamming.
This commit is contained in:
parent
c2bf124a90
commit
c4cc337d7a
|
@ -203,13 +203,17 @@ static void state_zfunc(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3D
|
||||||
|
|
||||||
if(glParm) {
|
if(glParm) {
|
||||||
if(glParm == GL_EQUAL || glParm == GL_NOTEQUAL) {
|
if(glParm == GL_EQUAL || glParm == GL_NOTEQUAL) {
|
||||||
|
static BOOL once = FALSE;
|
||||||
/* There are a few issues with this: First, our inability to
|
/* There are a few issues with this: First, our inability to
|
||||||
* select a proper Z depth, most of the time we're stuck with
|
* select a proper Z depth, most of the time we're stuck with
|
||||||
* D24S8, even if the app selects D32 or D16. There seem to be
|
* D24S8, even if the app selects D32 or D16. There seem to be
|
||||||
* some other precision problems which have to be debugged to
|
* some other precision problems which have to be debugged to
|
||||||
* make NOTEQUAL and EQUAL work properly
|
* make NOTEQUAL and EQUAL work properly
|
||||||
*/
|
*/
|
||||||
FIXME("D3DCMP_NOTEQUAL and D3DCMP_EQUAL do not work correctly yet\n");
|
if(!once) {
|
||||||
|
once = TRUE;
|
||||||
|
FIXME("D3DCMP_NOTEQUAL and D3DCMP_EQUAL do not work correctly yet\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
glDepthFunc(glParm);
|
glDepthFunc(glParm);
|
||||||
|
@ -2553,8 +2557,12 @@ static void state_vertexblend(DWORD state, IWineD3DStateBlockImpl *stateblock, W
|
||||||
stateblock->wineD3DDevice->vertexBlendUsed = TRUE;
|
stateblock->wineD3DDevice->vertexBlendUsed = TRUE;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* TODO: Implement vertex blending in drawStridedSlow */
|
static BOOL once = FALSE;
|
||||||
FIXME("Vertex blending enabled, but not supported by hardware\n");
|
if(!once) {
|
||||||
|
once = TRUE;
|
||||||
|
/* TODO: Implement vertex blending in drawStridedSlow */
|
||||||
|
FIXME("Vertex blending enabled, but not supported by hardware\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue