1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-21 13:29:26 +01:00

[dxvk] Add timeline semaphore entry points

Co-authored-by: Derek Lesho <dlesho@codeweavers.com>
This commit is contained in:
Philip Rebohle 2021-10-19 16:08:00 +02:00
parent ec813e036c
commit a40724aaf8
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
2 changed files with 4 additions and 0 deletions

View File

@ -798,6 +798,7 @@ namespace dxvk {
"\n bufferDeviceAddress : ", features.vk12.bufferDeviceAddress,
"\n shaderOutputViewportIndex : ", features.vk12.shaderOutputViewportIndex,
"\n shaderOutputLayer : ", features.vk12.shaderOutputLayer,
"\n timelineSemaphore : ", features.vk12.timelineSemaphore,
"\nVulkan 1.3",
"\n robustImageAccess : ", features.vk13.robustImageAccess,
"\n pipelineCreationCacheControl : ", features.vk13.pipelineCreationCacheControl,

View File

@ -248,6 +248,9 @@ namespace dxvk::vk {
VULKAN_FN(vkUpdateDescriptorSetWithTemplate);
VULKAN_FN(vkResetQueryPool);
VULKAN_FN(vkGetBufferDeviceAddress);
VULKAN_FN(vkGetSemaphoreCounterValue);
VULKAN_FN(vkSignalSemaphore);
VULKAN_FN(vkWaitSemaphores);
VULKAN_FN(vkCmdBindPipeline);
VULKAN_FN(vkCmdSetViewport);
VULKAN_FN(vkCmdSetScissor);