Skip to content

Commit

Permalink
Update to latest Vulkan-Headers
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-lunarg committed Oct 15, 2024
1 parent 1099d8d commit e3d07c4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions gen/CurrentBuildVulkanVersion.cmake
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.297)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.297)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.298)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.298)
16 changes: 8 additions & 8 deletions src/VkBootstrapDispatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -5170,23 +5170,23 @@ struct DispatchTable {
}
#endif
#if (defined(VK_AMDX_shader_enqueue))
void cmdInitializeGraphScratchMemoryAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch) const noexcept {
fp_vkCmdInitializeGraphScratchMemoryAMDX(commandBuffer, scratch);
void cmdInitializeGraphScratchMemoryAMDX(VkCommandBuffer commandBuffer, VkPipeline executionGraph, VkDeviceAddress scratch, VkDeviceSize scratchSize) const noexcept {
fp_vkCmdInitializeGraphScratchMemoryAMDX(commandBuffer, executionGraph, scratch, scratchSize);
}
#endif
#if (defined(VK_AMDX_shader_enqueue))
void cmdDispatchGraphAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch, const VkDispatchGraphCountInfoAMDX* pCountInfo) const noexcept {
fp_vkCmdDispatchGraphAMDX(commandBuffer, scratch, pCountInfo);
void cmdDispatchGraphAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch, VkDeviceSize scratchSize, const VkDispatchGraphCountInfoAMDX* pCountInfo) const noexcept {
fp_vkCmdDispatchGraphAMDX(commandBuffer, scratch, scratchSize, pCountInfo);
}
#endif
#if (defined(VK_AMDX_shader_enqueue))
void cmdDispatchGraphIndirectAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch, const VkDispatchGraphCountInfoAMDX* pCountInfo) const noexcept {
fp_vkCmdDispatchGraphIndirectAMDX(commandBuffer, scratch, pCountInfo);
void cmdDispatchGraphIndirectAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch, VkDeviceSize scratchSize, const VkDispatchGraphCountInfoAMDX* pCountInfo) const noexcept {
fp_vkCmdDispatchGraphIndirectAMDX(commandBuffer, scratch, scratchSize, pCountInfo);
}
#endif
#if (defined(VK_AMDX_shader_enqueue))
void cmdDispatchGraphIndirectCountAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch, VkDeviceAddress countInfo) const noexcept {
fp_vkCmdDispatchGraphIndirectCountAMDX(commandBuffer, scratch, countInfo);
void cmdDispatchGraphIndirectCountAMDX(VkCommandBuffer commandBuffer, VkDeviceAddress scratch, VkDeviceSize scratchSize, VkDeviceAddress countInfo) const noexcept {
fp_vkCmdDispatchGraphIndirectCountAMDX(commandBuffer, scratch, scratchSize, countInfo);
}
#endif
#if (defined(VK_KHR_maintenance6))
Expand Down

0 comments on commit e3d07c4

Please sign in to comment.