diff --git a/docs/features.txt b/docs/features.txt index ea6f8678a65..4ebaafc61ff 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -572,7 +572,7 @@ Khronos extensions that are not part of any Vulkan version: VK_KHR_ray_tracing_maintenance1 DONE (anv/gfx12.5+, lvp, radv/gfx10.3+, tu/a740+, vn) VK_KHR_ray_tracing_pipeline DONE (anv/gfx12.5+, lvp, radv/gfx10.3+, vn) VK_KHR_ray_tracing_position_fetch DONE (anv, lvp, radv/gfx10.3+, vn) - VK_KHR_robustness2 DONE (anv, pvr, radv, vn) + VK_KHR_robustness2 DONE (anv, panvk/v10+, pvr, radv, vn) VK_KHR_shader_bfloat16 DONE (anv/gfx12.5+, radv/gfx12+, vn) VK_KHR_shader_clock DONE (anv, hasvk, lvp, nvk, panvk, radv, tu, vn) VK_KHR_shader_maximal_reconvergence DONE (anv, hk, kk, lvp, nvk, panvk/v10+, radv, vn) diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index edbee8f9fd3..544b82e6afa 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -24,3 +24,4 @@ VK_KHR_pipeline_binary on HoneyKrisp VK_KHR_incremental_present on pvr VK_KHR_xcb_surface on pvr VK_KHR_xlib_surface on pvr +VK_KHR_robustness2 on panvk v10+ diff --git a/src/panfrost/vulkan/panvk_vX_physical_device.c b/src/panfrost/vulkan/panvk_vX_physical_device.c index be218f93cc9..b3f751998fc 100644 --- a/src/panfrost/vulkan/panvk_vX_physical_device.c +++ b/src/panfrost/vulkan/panvk_vX_physical_device.c @@ -91,6 +91,7 @@ panvk_per_arch(get_physical_device_extensions)( .KHR_pipeline_library = true, .KHR_push_descriptor = true, .KHR_relaxed_block_layout = true, + .KHR_robustness2 = PAN_ARCH >= 10, .KHR_sampler_mirror_clamp_to_edge = true, .KHR_sampler_ycbcr_conversion = true, .KHR_separate_depth_stencil_layouts = true, @@ -489,7 +490,7 @@ panvk_per_arch(get_physical_device_features)( /* VK_KHR_pipeline_executable_properties */ .pipelineExecutableInfo = true, - /* VK_EXT_robustness2 */ + /* VK_KHR_robustness2 */ .robustBufferAccess2 = PAN_ARCH >= 11, .robustImageAccess2 = false, .nullDescriptor = PAN_ARCH >= 10, @@ -1018,7 +1019,7 @@ panvk_per_arch(get_physical_device_properties)( .pipelineBinaryPrecompiledInternalCache = has_disk_cache, .pipelineBinaryCompressedData = false, - /* VK_EXT_robustness2 */ + /* VK_KHR_robustness2 */ .robustStorageBufferAccessSizeAlignment = 1, .robustUniformBufferAccessSizeAlignment = 1,