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?