24 Mar
2023
24 Mar
'23
1:26 a.m.
Zebediah Figura (@zfigura) commented about dlls/dxgi/tests/dxgi.c:
+ + for (i = 0; i < 3; i++) + { + wait_result = WaitForSingleObject(semaphore, 100); + todo_wine_if(i != 0) + ok(!wait_result, "Got unexpected wait result %#lx.\n", wait_result); + } + + wait_result = WaitForSingleObject(semaphore, 100); + ok(wait_result == WAIT_TIMEOUT, "Got unexpected wait result %#lx.\n", wait_result); + + hr = ID3D12Fence_Signal(fence, 1); + ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr); + + Sleep(100); + Is this a relic?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2486#note_27718