radv: advertise VK_KHR_shader_untyped_pointers
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36677>
This commit is contained in:
Samuel Pitoiset 2025-05-07 16:41:55 +02:00 committed by Marge Bot
parent c5a5c8818c
commit b9221c7c89
3 changed files with 6 additions and 1 deletions

View file

@ -572,7 +572,7 @@ Khronos extensions that are not part of any Vulkan version:
VK_KHR_shader_relaxed_extended_instruction DONE (anv, hasvk, hk, nvk, panvk, radv, tu, v3dv, vn)
VK_KHR_shader_subgroup_uniform_control_flow DONE (anv, hasvk, hk, nvk, panvk/v10+, radv, tu, vn)
VK_KHR_shader_quad_control DONE (anv, hk, nvk, panvk/v10+, radv, vn)
VK_KHR_shader_untyped_pointers DONE (anv, nvk)
VK_KHR_shader_untyped_pointers DONE (anv, nvk, radv)
VK_KHR_shared_presentable_image not started
VK_KHR_surface DONE (anv, dzn, hasvk, hk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
VK_KHR_surface_protected_capabilities DONE (anv, hk, lvp, nvk, radv, tu, v3dv, vn)

View file

@ -8,3 +8,4 @@ cl_ext_immutable_memory_objects
VK_KHR_video_encode_intra_refresh on radv
VK_KHR_video_encode_quantization_map on radv
GL_ATI_meminfo and GL_NVX_gpu_memory_info on r300
VK_KHR_shader_untyped_pointers on anv and RADV

View file

@ -622,6 +622,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
.KHR_shader_subgroup_rotate = true,
.KHR_shader_subgroup_uniform_control_flow = true,
.KHR_shader_terminate_invocation = true,
.KHR_shader_untyped_pointers = true,
.KHR_spirv_1_4 = true,
.KHR_storage_buffer_storage_class = true,
#ifdef RADV_USE_WSI_PLATFORM
@ -1389,6 +1390,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
/* VK_KHR_video_encode_quantization_map */
.videoEncodeQuantizationMap = true,
/* VK_KHR_shader_untyped_pointers */
.shaderUntypedPointers = true,
};
}