wined3d: Correct a TRACE and remove an incorrect comment.

This commit is contained in:
Henri Verbeet 2008-09-03 16:29:09 +02:00 committed by Alexandre Julliard
parent 4b354e8e62
commit 632102cd14

View File

@ -268,12 +268,9 @@ static void drawStridedFast(IWineD3DDevice *iface,UINT numberOfVertices, GLenum
#endif #endif
} else { } else {
TRACE("(%p) : glDrawArrays(%#x, %d, %d)\n", This, glPrimitiveType, startVertex, numberOfVertices);
/* Note first is now zero as we shuffled along earlier */
TRACE("(%p) : glDrawArrays(%x, 0, %d)\n", This, glPrimitiveType, numberOfVertices);
glDrawArrays(glPrimitiveType, startVertex, numberOfVertices); glDrawArrays(glPrimitiveType, startVertex, numberOfVertices);
checkGLcall("glDrawArrays"); checkGLcall("glDrawArrays");
} }
return; return;