http://bugs.winehq.org/show_bug.cgi?id=19888 ivan1986 <ivan1986(a)list.ru> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |UNCONFIRMED Resolution|INVALID | --- Comment #12 from ivan1986 <ivan1986(a)list.ru> 2009-10-25 15:49:21 --- i look source wine 1.1.29 - only one file have this string /dlls/ddraw/executebuffer.c source code is if (ci->dwFlags == D3DPROCESSVERTICES_TRANSFORMLIGHT) { .... } else if (ci->dwFlags == D3DPROCESSVERTICES_TRANSFORM) { .... } else if (ci->dwFlags == D3DPROCESSVERTICES_COPY) { .... } else { ERR("Unhandled vertex processing !\n"); } trace:d3d7:IDirect3DExecuteBufferImpl_Execute PROCESSVERTICES (1) trace:d3d7:IDirect3DExecuteBufferImpl_Execute Start : 0 Dest : 0 Count : 4 trace:d3d7:IDirect3DExecuteBufferImpl_Execute Flags : COPY UPDATEEXTENTS err:d3d7:IDirect3DExecuteBufferImpl_Execute Unhandled vertex processing ! COPY UPDATEEXTENTS this string output by that code if (TRACE_ON(d3d7)) { if (ci->dwFlags & D3DPROCESSVERTICES_COPY) TRACE("COPY "); if (ci->dwFlags & D3DPROCESSVERTICES_NOCOLOR) TRACE("NOCOLOR "); if (ci->dwFlags == D3DPROCESSVERTICES_OPMASK) TRACE("OPMASK "); if (ci->dwFlags & D3DPROCESSVERTICES_TRANSFORM) TRACE("TRANSFORM "); if (ci->dwFlags == D3DPROCESSVERTICES_TRANSFORMLIGHT) TRACE("TRANSFORMLIGHT "); if (ci->dwFlags & D3DPROCESSVERTICES_UPDATEEXTENTS) TRACE("UPDATEEXTENTS "); TRACE("\n"); } -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.