Update to latest Vulkan-Headers

This commit is contained in:
charles-lunarg 2024-07-23 00:48:12 +00:00 committed by Charles Giessen
parent 5836b6cb94
commit f89af55363
2 changed files with 15 additions and 2 deletions

View File

@ -1,2 +1,2 @@
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.290)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.290)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.291)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.291)

View File

@ -2098,6 +2098,9 @@ struct DispatchTable {
#if (defined(VK_NV_device_generated_commands_compute))
fp_vkGetPipelineIndirectDeviceAddressNV = reinterpret_cast<PFN_vkGetPipelineIndirectDeviceAddressNV>(procAddr(device, "vkGetPipelineIndirectDeviceAddressNV"));
#endif
#if (defined(VK_AMD_anti_lag))
fp_vkAntiLagUpdateAMD = reinterpret_cast<PFN_vkAntiLagUpdateAMD>(procAddr(device, "vkAntiLagUpdateAMD"));
#endif
#if (defined(VK_VERSION_1_3))
fp_vkCmdSetCullMode = reinterpret_cast<PFN_vkCmdSetCullMode>(procAddr(device, "vkCmdSetCullMode"));
#endif
@ -4246,6 +4249,11 @@ struct DispatchTable {
return fp_vkGetPipelineIndirectDeviceAddressNV(device, pInfo);
}
#endif
#if (defined(VK_AMD_anti_lag))
void antiLagUpdateAMD(const VkAntiLagDataAMD* pData) const noexcept {
fp_vkAntiLagUpdateAMD(device, pData);
}
#endif
#if (defined(VK_VERSION_1_3))
void cmdSetCullMode(VkCommandBuffer commandBuffer, VkCullModeFlags cullMode) const noexcept {
fp_vkCmdSetCullMode(commandBuffer, cullMode);
@ -6645,6 +6653,11 @@ struct DispatchTable {
#else
void * fp_vkGetPipelineIndirectDeviceAddressNV{};
#endif
#if (defined(VK_AMD_anti_lag))
PFN_vkAntiLagUpdateAMD fp_vkAntiLagUpdateAMD = nullptr;
#else
void * fp_vkAntiLagUpdateAMD{};
#endif
#if (defined(VK_VERSION_1_3))
PFN_vkCmdSetCullMode fp_vkCmdSetCullMode = nullptr;
#else