mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 02:20:11 +01:00
panvk: enable subgroupExtendedTypes
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33365>
This commit is contained in:
parent
c4941376a9
commit
a9592a0c15
3 changed files with 4 additions and 2 deletions
|
|
@ -470,7 +470,7 @@ Vulkan 1.2 -- all DONE: anv, nvk, tu, vn
|
|||
VK_KHR_shader_atomic_int64 DONE (anv, lvp, nvk, radv, vn, tu/a740+)
|
||||
VK_KHR_shader_float16_int8 DONE (anv, dzn, nvk, hasvk, lvp, radv, tu, vn, panvk)
|
||||
VK_KHR_shader_float_controls DONE (anv, dzn, hasvk, lvp, nvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_shader_subgroup_extended_types DONE (anv, hasvk, lvp, nvk, radv, tu, vn)
|
||||
VK_KHR_shader_subgroup_extended_types DONE (anv, hasvk, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_spirv_1_4 DONE (anv, dzn, hasvk, lvp, nvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_timeline_semaphore DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_uniform_buffer_standard_layout DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
|
|
|
|||
|
|
@ -16,3 +16,4 @@ VK_KHR_shader_subgroup_uniform_control_flow on panvk/v10+
|
|||
VK_KHR_shader_maximal_reconvergence on panvk/v10+
|
||||
VK_KHR_shader_quad_control on panvk/v10+
|
||||
VK_EXT_device_memory_report on RADV
|
||||
VK_KHR_shader_subgroup_extended_types on panvk/v10+
|
||||
|
|
|
|||
|
|
@ -219,6 +219,7 @@ get_device_extensions(const struct panvk_physical_device *device,
|
|||
.KHR_shader_non_semantic_info = true,
|
||||
.KHR_shader_quad_control = arch >= 10, /* requires vk1.1 */
|
||||
.KHR_shader_relaxed_extended_instruction = true,
|
||||
.KHR_shader_subgroup_extended_types = true,
|
||||
.KHR_shader_subgroup_rotate = true,
|
||||
.KHR_shader_subgroup_uniform_control_flow = arch >= 10, /* requires vk1.1 */
|
||||
.KHR_storage_buffer_storage_class = true,
|
||||
|
|
@ -348,7 +349,7 @@ get_features(const struct panvk_physical_device *device,
|
|||
.scalarBlockLayout = true,
|
||||
.imagelessFramebuffer = true,
|
||||
.uniformBufferStandardLayout = true,
|
||||
.shaderSubgroupExtendedTypes = false,
|
||||
.shaderSubgroupExtendedTypes = true,
|
||||
.separateDepthStencilLayouts = true,
|
||||
.hostQueryReset = true,
|
||||
.timelineSemaphore = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue