mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 22:30:12 +01:00
panvk: Advertise VK_EXT_shader_demote_to_helper_invocation support
The necessary bits have been added to the bifrost/valhall backend, so we can advertise support for VK_EXT_shader_demote_to_helper_invocation now. Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34676>
This commit is contained in:
parent
83cbac00d3
commit
d4998f7ff3
2 changed files with 3 additions and 1 deletions
|
|
@ -16,3 +16,4 @@ multiDrawIndirect on panvk/v10+
|
||||||
VK_KHR_draw_indirect_count on panvk/v10+
|
VK_KHR_draw_indirect_count on panvk/v10+
|
||||||
VK_KHR_shader_integer_dot_product on panvk
|
VK_KHR_shader_integer_dot_product on panvk
|
||||||
VK_KHR_shader_terminate_invocation on panvk
|
VK_KHR_shader_terminate_invocation on panvk
|
||||||
|
VK_EXT_shader_demote_to_helper_invocation on panvk
|
||||||
|
|
|
||||||
|
|
@ -311,6 +311,7 @@ get_device_extensions(const struct panvk_physical_device *device,
|
||||||
.EXT_scalar_block_layout = true,
|
.EXT_scalar_block_layout = true,
|
||||||
.EXT_separate_stencil_usage = true,
|
.EXT_separate_stencil_usage = true,
|
||||||
.EXT_shader_module_identifier = true,
|
.EXT_shader_module_identifier = true,
|
||||||
|
.EXT_shader_demote_to_helper_invocation = true,
|
||||||
.EXT_subgroup_size_control = has_vk1_1,
|
.EXT_subgroup_size_control = has_vk1_1,
|
||||||
.EXT_tooling_info = true,
|
.EXT_tooling_info = true,
|
||||||
.EXT_vertex_attribute_divisor = true,
|
.EXT_vertex_attribute_divisor = true,
|
||||||
|
|
@ -473,7 +474,7 @@ get_features(const struct panvk_physical_device *device,
|
||||||
.extendedDynamicState2PatchControlPoints = false,
|
.extendedDynamicState2PatchControlPoints = false,
|
||||||
.pipelineCreationCacheControl = true,
|
.pipelineCreationCacheControl = true,
|
||||||
.privateData = true,
|
.privateData = true,
|
||||||
.shaderDemoteToHelperInvocation = false,
|
.shaderDemoteToHelperInvocation = true,
|
||||||
.shaderTerminateInvocation = true,
|
.shaderTerminateInvocation = true,
|
||||||
.subgroupSizeControl = true,
|
.subgroupSizeControl = true,
|
||||||
.computeFullSubgroups = true,
|
.computeFullSubgroups = true,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue