The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

aux/vk: Lock vkCmdPipelineBarrier with pool mutex.

+2
+2
src/xrt/auxiliary/vk/vk_helpers.c
··· 618 618 .subresourceRange = subresource_range, 619 619 }; 620 620 621 + os_mutex_lock(&vk->cmd_pool_mutex); 621 622 vk->vkCmdPipelineBarrier(cmd_buffer, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT, 622 623 VK_PIPELINE_STAGE_ALL_COMMANDS_BIT, 0, 0, NULL, 623 624 0, NULL, 1, &barrier); 625 + os_mutex_unlock(&vk->cmd_pool_mutex); 624 626 625 627 return VK_SUCCESS; 626 628 }