mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 22:30:12 +01:00
panvk: advertise VK_KHR_float_controls2
This is all supported by the common nir code, no changes needed on our end. Signed-off-by: Benjamin Lee <benjamin.lee@collabora.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33660>
This commit is contained in:
parent
7612dc4713
commit
22fa3e88dd
3 changed files with 6 additions and 1 deletions
|
|
@ -520,7 +520,7 @@ Vulkan 1.4 -- all DONE: anv, lvp, nvk, radv/gfx8+, tu/a7xx+, vn
|
|||
VK_KHR_map_memory2 DONE (anv, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_push_descriptor DONE (anv, hasvk, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_shader_expect_assume DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_shader_float_controls2 DONE (anv, lvp, nvk, radv, tu, vn)
|
||||
VK_KHR_shader_float_controls2 DONE (anv, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_shader_subgroup_rotate DONE (anv, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_vertex_attribute_divisor DONE (anv, lvp, nvk, panvk, radv, tu, v3dv, vn)
|
||||
VK_EXT_host_image_copy DONE (anv, lvp, nvk/Turing+, tu, vn)
|
||||
|
|
|
|||
|
|
@ -31,3 +31,4 @@ textureCompressionBC on panvk
|
|||
VK_EXT_sample_locations on RADV for GFX10+
|
||||
GL_ARB_shader_clock on panvk
|
||||
VK_KHR_float_controls on panvk
|
||||
VK_KHR_float_controls2 on panvk
|
||||
|
|
|
|||
|
|
@ -252,6 +252,7 @@ get_device_extensions(const struct panvk_physical_device *device,
|
|||
.KHR_shader_draw_parameters = true,
|
||||
.KHR_shader_expect_assume = true,
|
||||
.KHR_shader_float_controls = true,
|
||||
.KHR_shader_float_controls2 = true,
|
||||
.KHR_shader_float16_int8 = true,
|
||||
.KHR_shader_maximal_reconvergence = has_vk1_1,
|
||||
.KHR_shader_non_semantic_info = true,
|
||||
|
|
@ -515,6 +516,9 @@ get_features(const struct panvk_physical_device *device,
|
|||
/* VK_EXT_pipeline_robustness */
|
||||
.pipelineRobustness = true,
|
||||
|
||||
/* VK_KHR_shader_float_controls2 */
|
||||
.shaderFloatControls2 = true,
|
||||
|
||||
/* VK_KHR_shader_quad_control */
|
||||
.shaderQuadControl = false,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue