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 authored and github-actions[bot] committed Oct 29, 2024
1 parent 9e826bb commit 459e4d7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 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.299)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.299)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.300)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.300)
13 changes: 13 additions & 0 deletions src/VkBootstrapDispatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,9 @@ struct InstanceDispatchTable {
#if (defined(VK_KHR_cooperative_matrix))
fp_vkGetPhysicalDeviceCooperativeMatrixPropertiesKHR = reinterpret_cast<PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesKHR>(procAddr(instance, "vkGetPhysicalDeviceCooperativeMatrixPropertiesKHR"));
#endif
#if (defined(VK_NV_cooperative_matrix2))
fp_vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV = reinterpret_cast<PFN_vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV>(procAddr(instance, "vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV"));
#endif
#if (defined(VK_KHR_get_physical_device_properties2))
fp_vkGetPhysicalDeviceFeatures2KHR = reinterpret_cast<PFN_vkGetPhysicalDeviceFeatures2KHR>(procAddr(instance, "vkGetPhysicalDeviceFeatures2KHR"));
#endif
Expand Down Expand Up @@ -780,6 +783,11 @@ struct InstanceDispatchTable {
return fp_vkGetPhysicalDeviceCooperativeMatrixPropertiesKHR(physicalDevice, pPropertyCount, pProperties);
}
#endif
#if (defined(VK_NV_cooperative_matrix2))
VkResult getPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkCooperativeMatrixFlexibleDimensionsPropertiesNV* pProperties) const noexcept {
return fp_vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV(physicalDevice, pPropertyCount, pProperties);
}
#endif
#if (defined(VK_KHR_get_physical_device_properties2))
void getPhysicalDeviceFeatures2KHR(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures2KHR* pFeatures) const noexcept {
fp_vkGetPhysicalDeviceFeatures2KHR(physicalDevice, pFeatures);
Expand Down Expand Up @@ -1272,6 +1280,11 @@ struct InstanceDispatchTable {
#else
void * fp_vkGetPhysicalDeviceCooperativeMatrixPropertiesKHR{};
#endif
#if (defined(VK_NV_cooperative_matrix2))
PFN_vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV fp_vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV = nullptr;
#else
void * fp_vkGetPhysicalDeviceCooperativeMatrixFlexibleDimensionsPropertiesNV{};
#endif
#if (defined(VK_KHR_get_physical_device_properties2))
PFN_vkGetPhysicalDeviceFeatures2KHR fp_vkGetPhysicalDeviceFeatures2KHR = nullptr;
#else
Expand Down

0 comments on commit 459e4d7

Please sign in to comment.