mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 12:30:09 +01:00
pvr: advertise KHR_shader_subgroup_extended_types
Signed-off-by: Frank Binns <frank.binns@imgtec.com> Acked-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37512>
This commit is contained in:
parent
bd96981cad
commit
80609b35e1
2 changed files with 5 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ Vulkan 1.2 -- all DONE: anv, hk, nvk, panvk/v10+, tu, vn
|
|||
VK_KHR_shader_atomic_int64 DONE (anv, lvp, nvk, panvk/v10+, radv, vn, tu/a740+)
|
||||
VK_KHR_shader_float16_int8 DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_shader_float_controls DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_shader_subgroup_extended_types DONE (anv, hasvk, lvp, nvk, panvk/v10+, radv, tu, vn)
|
||||
VK_KHR_shader_subgroup_extended_types DONE (anv, hasvk, lvp, nvk, panvk/v10+, pvr, radv, tu, vn)
|
||||
VK_KHR_spirv_1_4 DONE (anv, dzn, hasvk, lvp, nvk, panvk/v10+, 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)
|
||||
|
|
|
|||
|
|
@ -196,6 +196,7 @@ static void pvr_physical_device_get_supported_extensions(
|
|||
.KHR_separate_depth_stencil_layouts = true,
|
||||
.KHR_shader_expect_assume = false,
|
||||
.KHR_shader_float_controls = true,
|
||||
.KHR_shader_subgroup_extended_types = true,
|
||||
.KHR_swapchain = PVR_USE_WSI_PLATFORM,
|
||||
.KHR_swapchain_mutable_format = PVR_USE_WSI_PLATFORM,
|
||||
.KHR_timeline_semaphore = true,
|
||||
|
|
@ -306,6 +307,9 @@ static void pvr_physical_device_get_supported_features(
|
|||
/* Vulkan 1.2 / VK_KHR_separate_depth_stencil_layouts */
|
||||
.separateDepthStencilLayouts = true,
|
||||
|
||||
/* Vulkan 1.2 / VK_KHR_shader_subgroup_extended_types */
|
||||
.shaderSubgroupExtendedTypes = true,
|
||||
|
||||
/* Vulkan 1.2 / VK_KHR_uniform_buffer_standard_layout */
|
||||
.uniformBufferStandardLayout = true,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue