http://bugs.winehq.org/show_bug.cgi?id=27534
--- Comment #43 from Stefan Dösinger stefandoesinger@gmx.at 2011-08-08 16:15:27 CDT --- (In reply to comment #42)
You don't necessarily know the unmap has completed unless you use either a fence or Finish(),
If the buffer change isn't picked up by other contexts until after it has been done(rather than scheduled) we're lost anyway.
and even after it has completed you don't necessarily get the new contents until you rebind.
Yes, that problem exists, and not just with buffers but also with textures, but it isn't what causes this bug. The game has a different buffer bound while updating those dynamic buffers and rebinds the dynamic buffer before drawing. That way we'll rebind it on the GL side.
Either way the only ways I see to fix this properly are some changes in opengl or handling threading ourselves via a worker thread.