@@ -164,6 +164,7 @@ static const std::unordered_map<std::string, uint32_t> device_extension_map = {
164
164
{" VK_AMD_shader_fragment_mask" , 1 },
165
165
{" VK_EXT_inline_uniform_block" , 1 },
166
166
{" VK_EXT_shader_stencil_export" , 1 },
167
+ {" VK_KHR_shader_bfloat16" , 1 },
167
168
{" VK_EXT_sample_locations" , 1 },
168
169
{" VK_KHR_relaxed_block_layout" , 1 },
169
170
{" VK_KHR_get_memory_requirements2" , 1 },
@@ -350,7 +351,7 @@ static const std::unordered_map<std::string, uint32_t> device_extension_map = {
350
351
{" VK_EXT_depth_clamp_zero_one" , 1 },
351
352
{" VK_EXT_non_seamless_cube_map" , 1 },
352
353
{" VK_ARM_render_pass_striped" , 1 },
353
- {" VK_QCOM_fragment_density_map_offset" , 2 },
354
+ {" VK_QCOM_fragment_density_map_offset" , 3 },
354
355
{" VK_NV_copy_memory_indirect" , 1 },
355
356
{" VK_NV_memory_decompression" , 1 },
356
357
{" VK_NV_device_generated_commands_compute" , 2 },
@@ -431,6 +432,7 @@ static const std::unordered_map<std::string, uint32_t> device_extension_map = {
431
432
{" VK_KHR_depth_clamp_zero_one" , 1 },
432
433
{" VK_EXT_vertex_attribute_robustness" , 1 },
433
434
{" VK_NV_present_metering" , 1 },
435
+ {" VK_EXT_fragment_density_map_offset" , 1 },
434
436
};
435
437
436
438
@@ -2285,6 +2287,7 @@ static VKAPI_ATTR VkResult VKAPI_CALL GetDisplayPlaneCapabilities2KHR(
2285
2287
2286
2288
2287
2289
2290
+
2288
2291
static VKAPI_ATTR void VKAPI_CALL GetImageMemoryRequirements2KHR (
2289
2292
VkDevice device,
2290
2293
const VkImageMemoryRequirementsInfo2* pInfo,
@@ -4653,6 +4656,11 @@ static VKAPI_ATTR VkResult VKAPI_CALL GetMemoryMetalHandlePropertiesEXT(
4653
4656
#endif /* VK_ENABLE_BETA_EXTENSIONS */
4654
4657
4655
4658
4659
+ static VKAPI_ATTR void VKAPI_CALL CmdEndRendering2EXT (
4660
+ VkCommandBuffer commandBuffer,
4661
+ const VkRenderingEndInfoEXT* pRenderingEndInfo);
4662
+
4663
+
4656
4664
static VKAPI_ATTR VkResult VKAPI_CALL CreateAccelerationStructureKHR (
4657
4665
VkDevice device,
4658
4666
const VkAccelerationStructureCreateInfoKHR* pCreateInfo,
@@ -5642,6 +5650,7 @@ static const std::unordered_map<std::string, void*> name_to_funcptr_map = {
5642
5650
#ifdef VK_USE_PLATFORM_METAL_EXT
5643
5651
{" vkGetMemoryMetalHandlePropertiesEXT" , (void *)GetMemoryMetalHandlePropertiesEXT},
5644
5652
#endif
5653
+ {" vkCmdEndRendering2EXT" , (void *)CmdEndRendering2EXT},
5645
5654
{" vkCreateAccelerationStructureKHR" , (void *)CreateAccelerationStructureKHR},
5646
5655
{" vkDestroyAccelerationStructureKHR" , (void *)DestroyAccelerationStructureKHR},
5647
5656
{" vkCmdBuildAccelerationStructuresKHR" , (void *)CmdBuildAccelerationStructuresKHR},
0 commit comments