mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[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:
parent
02ba3da0ba
commit
9e755f270e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue