Commit 1fc4a171 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

wined3d: Show fixme about unimplemented vertex processing once.

parent 13ceb3fd
......@@ -1889,8 +1889,12 @@ static void state_ckeyblend(struct wined3d_context *context, const struct wined3
static void state_swvp(struct wined3d_context *context, const struct wined3d_state *state, DWORD state_id)
{
static int once;
if (state->render_states[WINED3D_RS_SOFTWAREVERTEXPROCESSING])
FIXME("Software vertex processing not implemented.\n");
{
if (!once++)
FIXME("Software vertex processing not implemented.\n");
}
}
static void get_src_and_opr(DWORD arg, BOOL is_alpha, GLenum* source, GLenum* operand) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment