wined3d: Add STATE_BASEVERTEXINDEX to debug_d3dstate.

This commit is contained in:
Stefan Dösinger 2011-06-14 15:42:42 +02:00 committed by Alexandre Julliard
parent 26efb871d3
commit 19a1b74252
1 changed files with 2 additions and 0 deletions

View File

@ -2244,6 +2244,8 @@ const char *debug_d3dstate(DWORD state)
return "STATE_FRONTFACE";
if (STATE_IS_POINTSPRITECOORDORIGIN(state))
return "STATE_POINTSPRITECOORDORIGIN";
if (STATE_IS_BASEVERTEXINDEX(state))
return "STATE_BASEVERTEXINDEX";
return wine_dbg_sprintf("UNKNOWN_STATE(%#x)", state);
}