mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
wined3d: Only display Missing vbo streams fixme once.
This commit is contained in:
parent
6e8f8a0529
commit
a3f503f876
@ -207,8 +207,12 @@ void primitiveDeclarationConvertToStridedData(
|
||||
else if(*fixup && !useVertexShaderFunction &&
|
||||
(element->Usage == WINED3DDECLUSAGE_COLOR ||
|
||||
element->Usage == WINED3DDECLUSAGE_POSITIONT)) {
|
||||
/* This may be bad with the fixed function pipeline */
|
||||
FIXME("Missing vbo streams with unfixed colors or transformed position, expect problems\n");
|
||||
static BOOL warned = FALSE;
|
||||
if(!warned) {
|
||||
/* This may be bad with the fixed function pipeline */
|
||||
FIXME("Missing vbo streams with unfixed colors or transformed position, expect problems\n");
|
||||
warned = TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user