[vulkan] Set staging fence timeout to 5 seconds

0.5s seemes to be unreliable on my VersaPro, particularly after a large
build.
This commit is contained in:
Bill Currie 2021-12-01 15:01:03 +09:00
parent 02ba3da0ba
commit 9e755f270e

View file

@ -117,7 +117,7 @@ QFV_DestroyStagingBuffer (qfv_stagebuf_t *stage)
fences->a[i] = stage->packets.buffer[i].fence;
}
dfunc->vkWaitForFences (device->dev, fences->size, fences->a, VK_TRUE,
500000000ull);
5000000000ull);
for (int i = 0; i < count; i++) {
dfunc->vkDestroyFence (device->dev, fences->a[i], 0);
}