mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-07 06:58:03 +01:00
vrclient: Call IVRCompositor::PostPresentHandoff() on wined3d command stream thread
IVRCompositor::PostPresentHandoff() has to be called on the same thread as IVRCompositor::Submit()
This commit is contained in:
parent
dae9230aff
commit
7b06a5685a
18 changed files with 232 additions and 113 deletions
|
|
@ -93,7 +93,7 @@ void __asm_dummy_vtables(void) {
|
|||
|
||||
winIVRClientCore_IVRClientCore_003 *create_winIVRClientCore_IVRClientCore_003(void *linux_side)
|
||||
{
|
||||
winIVRClientCore_IVRClientCore_003 *r = HeapAlloc(GetProcessHeap(), 0, sizeof(winIVRClientCore_IVRClientCore_003));
|
||||
winIVRClientCore_IVRClientCore_003 *r = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(winIVRClientCore_IVRClientCore_003));
|
||||
TRACE("-> %p\n", r);
|
||||
r->vtable = &winIVRClientCore_IVRClientCore_003_vtable;
|
||||
r->linux_side = linux_side;
|
||||
|
|
@ -177,7 +177,7 @@ void __asm_dummy_vtables(void) {
|
|||
|
||||
winIVRClientCore_IVRClientCore_002 *create_winIVRClientCore_IVRClientCore_002(void *linux_side)
|
||||
{
|
||||
winIVRClientCore_IVRClientCore_002 *r = HeapAlloc(GetProcessHeap(), 0, sizeof(winIVRClientCore_IVRClientCore_002));
|
||||
winIVRClientCore_IVRClientCore_002 *r = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(winIVRClientCore_IVRClientCore_002));
|
||||
TRACE("-> %p\n", r);
|
||||
r->vtable = &winIVRClientCore_IVRClientCore_002_vtable;
|
||||
r->linux_side = linux_side;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue