diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index 84939254e5d..d6d95b0c209 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -20,3 +20,4 @@ VK_EXT_shader_demote_to_helper_invocation on panvk VK_EXT_shader_replicated_composites on panvk VK_EXT_depth_bias_control on panvk VK_KHR_shader_bfloat16 on anv/gfx125+ +VK_KHR_robustness2 on RADV diff --git a/src/amd/vulkan/radv_physical_device.c b/src/amd/vulkan/radv_physical_device.c index 343579f2f68..83d1e2158b9 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -574,6 +574,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device .KHR_ray_tracing_pipeline = radv_enable_rt(pdev), .KHR_ray_tracing_position_fetch = radv_enable_rt(pdev), .KHR_relaxed_block_layout = true, + .KHR_robustness2 = true, .KHR_sampler_mirror_clamp_to_edge = true, .KHR_sampler_ycbcr_conversion = true, .KHR_separate_depth_stencil_layouts = true, @@ -969,7 +970,7 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc .stippledBresenhamLines = true, .stippledSmoothLines = false, - /* VK_EXT_robustness2 */ + /* VK_KHR_robustness2 */ .robustBufferAccess2 = true, .robustImageAccess2 = true, .nullDescriptor = true, @@ -1742,7 +1743,7 @@ radv_get_physical_device_properties(struct radv_physical_device *pdev) .sampleLocationSubPixelBits = 4, .variableSampleLocations = true, - /* VK_EXT_robustness2 */ + /* VK_KHR_robustness2 */ .robustStorageBufferAccessSizeAlignment = 4, .robustUniformBufferAccessSizeAlignment = 4,