Skip to content

Commit f056c1e

Browse files
hasvk: Implement basic vkQueueWaitIdle support.
The hang I was trying to fix is avoided by downgrading DXVK from 1.10.3 to 1.10.1.
1 parent 624b0e0 commit f056c1e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/intel/vulkan_hasvk/anv_queue.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
*/
2727

2828
#include "anv_private.h"
29+
#include "vk_common_entrypoints.h"
2930

3031
VkResult
3132
anv_queue_init(struct anv_device *device, struct anv_queue *queue,
@@ -72,3 +73,9 @@ anv_queue_finish(struct anv_queue *queue)
7273

7374
vk_queue_finish(&queue->vk);
7475
}
76+
77+
VkResult
78+
anv_QueueWaitIdle(VkQueue _queue)
79+
{
80+
return vk_common_QueueWaitIdle(_queue);
81+
}

0 commit comments

Comments
 (0)