mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Go through vkQueueWaitIdle function pointer
This commit is contained in:
parent
89ee08214d
commit
01f5a7ad84
@ -579,6 +579,7 @@ static bool vulkan_init_filter_chain_preset(vk_t *vk, const char *shader_path)
|
||||
bool ret = true;
|
||||
|
||||
memset(&info, 0, sizeof(info));
|
||||
|
||||
info.device = vk->context->device;
|
||||
info.memory_properties = &vk->context->memory_properties;
|
||||
info.pipeline_cache = vk->pipelines.cache;
|
||||
@ -711,7 +712,7 @@ static void vulkan_free(void *data)
|
||||
|
||||
if (vk->context && vk->context->device)
|
||||
{
|
||||
vkQueueWaitIdle(vk->context->queue);
|
||||
vk->context->fp.vkQueueWaitIdle(vk->context->queue);
|
||||
vulkan_deinit_resources(vk);
|
||||
|
||||
/* No need to init this since textures are create on-demand. */
|
||||
@ -988,7 +989,7 @@ static void vulkan_check_swapchain(vk_t *vk)
|
||||
{
|
||||
if (vk->context->invalid_swapchain)
|
||||
{
|
||||
vkQueueWaitIdle(vk->context->queue);
|
||||
vk->context->fp.vkQueueWaitIdle(vk->context->queue);
|
||||
|
||||
vulkan_deinit_resources(vk);
|
||||
vulkan_init_resources(vk);
|
||||
@ -1851,7 +1852,7 @@ static void vulkan_unload_texture(void *data, uintptr_t handle)
|
||||
|
||||
/* TODO: We really want to defer this deletion instead,
|
||||
* but this will do for now. */
|
||||
vkQueueWaitIdle(vk->context->queue);
|
||||
vk->context->fp.vkQueueWaitIdle(vk->context->queue);
|
||||
vulkan_destroy_texture(vk->context->device, texture);
|
||||
free(texture);
|
||||
}
|
||||
@ -1948,7 +1949,7 @@ static bool vulkan_read_viewport(void *data, uint8_t *buffer)
|
||||
|
||||
vk->readback.pending = true;
|
||||
video_driver_ctl(RARCH_DISPLAY_CTL_CACHED_FRAME_RENDER, NULL);
|
||||
vkQueueWaitIdle(vk->context->queue);
|
||||
vk->context->fp.vkQueueWaitIdle(vk->context->queue);
|
||||
|
||||
if (!staging->mapped)
|
||||
vulkan_map_persistent_texture(vk->context->device, staging);
|
||||
@ -2126,7 +2127,7 @@ static bool vulkan_overlay_load(void *data,
|
||||
return false;
|
||||
|
||||
slock_lock(vk->context->queue_lock);
|
||||
vkQueueWaitIdle(vk->context->queue);
|
||||
vk->context->fp.vkQueueWaitIdle(vk->context->queue);
|
||||
slock_unlock(vk->context->queue_lock);
|
||||
vulkan_overlay_free(vk);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user