wined3d: Only display Missing vbo streams fixme once.

This commit is contained in:
Ben Mayhew 2008-05-09 20:57:26 +02:00 committed by Alexandre Julliard
parent 6e8f8a0529
commit a3f503f876
1 changed files with 6 additions and 2 deletions

View File

@ -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;
}
}
}
}