Commit b5df8bd4 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Use debug_d3dstate() in compile_state_table() as well.

parent 073d7212
...@@ -6021,10 +6021,11 @@ HRESULT compile_state_table(struct StateEntry *StateTable, APPLYSTATEFUNC **dev_ ...@@ -6021,10 +6021,11 @@ HRESULT compile_state_table(struct StateEntry *StateTable, APPLYSTATEFUNC **dev_
cur[i].state, handlers + 1); cur[i].state, handlers + 1);
} }
if(StateTable[cur[i].state].representative && if (StateTable[cur[i].state].representative
StateTable[cur[i].state].representative != cur[i].content.representative) { && StateTable[cur[i].state].representative != cur[i].content.representative)
FIXME("State %u has different representatives in different pipeline parts\n", {
cur[i].state); FIXME("State %s (%#x) has different representatives in different pipeline parts.\n",
debug_d3dstate(cur[i].state), cur[i].state);
} }
StateTable[cur[i].state].representative = cur[i].content.representative; StateTable[cur[i].state].representative = cur[i].content.representative;
} }
......
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