mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-08 16:30:27 +01:00
radv: advertise VK_EXT_shader_uniform_buffer_unsized_array
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38047>
This commit is contained in:
parent
66bc12a747
commit
45affb0e53
3 changed files with 6 additions and 0 deletions
|
|
@ -668,6 +668,7 @@ Khronos extensions that are not part of any Vulkan version:
|
|||
VK_EXT_shader_subgroup_ballot DONE (anv, dzn, hasvk, hk, lvp, nvk, panvk, radv, vn)
|
||||
VK_EXT_shader_subgroup_vote DONE (anv, dzn, hasvk, hk, lvp, nvk, panvk, radv, vn)
|
||||
VK_EXT_shader_module_identifier DONE (anv, hasvk, hk, nvk, panvk, radv, tu, v3dv)
|
||||
VK_EXT_shader_uniform_buffer_unsized_array DONE (radv)
|
||||
VK_EXT_surface_maintenance1 DONE (anv, hk, lvp, nvk, radv, tu, v3dv, vn)
|
||||
VK_EXT_swapchain_maintenance1 DONE (anv, hk, lvp, nvk, radv, tu, v3dv, vn)
|
||||
VK_EXT_transform_feedback DONE (anv, hasvk, hk, lvp, nvk, radv, tu, vn)
|
||||
|
|
|
|||
|
|
@ -7,3 +7,4 @@ VK_KHR_present_id2 on HoneyKrisp
|
|||
VK_KHR_present_wait on HoneyKrisp
|
||||
VK_KHR_present_wait2 on HoneyKrisp
|
||||
VK_KHR_maintenance10 on ANV, NVK
|
||||
VK_EXT_shader_uniform_buffer_unsized_array on RADV
|
||||
|
|
|
|||
|
|
@ -765,6 +765,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.EXT_shader_stencil_export = true,
|
||||
.EXT_shader_subgroup_ballot = true,
|
||||
.EXT_shader_subgroup_vote = true,
|
||||
.EXT_shader_uniform_buffer_unsized_array = true,
|
||||
.EXT_shader_viewport_index_layer = true,
|
||||
.EXT_subgroup_size_control = true,
|
||||
#ifdef RADV_USE_WSI_PLATFORM
|
||||
|
|
@ -1416,6 +1417,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
|
|||
|
||||
/* VK_EXT_ycbcr_2plane_444_formats */
|
||||
.ycbcr2plane444Formats = true,
|
||||
|
||||
/* VK_EXT_shader_uniform_buffer_unsized_array */
|
||||
.shaderUniformBufferUnsizedArray = true,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue