mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-12 22:20:33 +01:00
nvk: Advertise KHR_shader_untyped_pointers
Acked-by: Caio Oliveira <caio.oliveira@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36681>
This commit is contained in:
parent
e8fe6273f9
commit
65f3d7fb7f
2 changed files with 5 additions and 1 deletions
|
|
@ -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)
|
||||
VK_KHR_shader_untyped_pointers DONE (anv, nvk)
|
||||
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)
|
||||
|
|
|
|||
|
|
@ -187,6 +187,7 @@ nvk_get_device_extensions(const struct nvk_instance *instance,
|
|||
.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 NVK_USE_WSI_PLATFORM
|
||||
|
|
@ -508,6 +509,9 @@ nvk_get_device_features(const struct nv_device_info *info,
|
|||
/* VK_KHR_shader_subgroup_uniform_control_flow */
|
||||
.shaderSubgroupUniformControlFlow = true,
|
||||
|
||||
/* KHR_shader_untyped_pointers */
|
||||
.shaderUntypedPointers = true,
|
||||
|
||||
/* VK_KHR_unified_image_layouts */
|
||||
.unifiedImageLayouts = true,
|
||||
.unifiedImageLayoutsVideo = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue