mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 17:50:39 +02:00
radv/aco: do not advertise VK_KHR_shader_subgroup_extended_types
It's unsupported because small bitsizes are still not completely supported. It should have been disabled by default with ACO. Acked-by: Daniel Schürmann <daniel@schuermann.dev> Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4549>
This commit is contained in:
parent
4ee2370972
commit
e2650db952
2 changed files with 3 additions and 3 deletions
|
|
@ -1203,7 +1203,7 @@ void radv_GetPhysicalDeviceFeatures2(
|
|||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES: {
|
||||
VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures *features =
|
||||
(VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures *)ext;
|
||||
features->shaderSubgroupExtendedTypes = true;
|
||||
features->shaderSubgroupExtendedTypes = !pdevice->use_aco;
|
||||
break;
|
||||
}
|
||||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES_KHR: {
|
||||
|
|
@ -1266,7 +1266,7 @@ void radv_GetPhysicalDeviceFeatures2(
|
|||
features->scalarBlockLayout = pdevice->rad_info.chip_class >= GFX7;
|
||||
features->imagelessFramebuffer = true;
|
||||
features->uniformBufferStandardLayout = true;
|
||||
features->shaderSubgroupExtendedTypes = true;
|
||||
features->shaderSubgroupExtendedTypes = !pdevice->use_aco;
|
||||
features->separateDepthStencilLayouts = true;
|
||||
features->hostQueryReset = true;
|
||||
features->timelineSemaphore = pdevice->rad_info.has_syncobj_wait_for_submit;
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ EXTENSIONS = [
|
|||
Extension('VK_KHR_shader_float_controls', 1, True),
|
||||
Extension('VK_KHR_shader_float16_int8', 1, '!device->use_aco'),
|
||||
Extension('VK_KHR_shader_non_semantic_info', 1, True),
|
||||
Extension('VK_KHR_shader_subgroup_extended_types', 1, True),
|
||||
Extension('VK_KHR_shader_subgroup_extended_types', 1, '!device->use_aco'),
|
||||
Extension('VK_KHR_spirv_1_4', 1, True),
|
||||
Extension('VK_KHR_storage_buffer_storage_class', 1, True),
|
||||
Extension('VK_KHR_surface', 25, 'RADV_HAS_SURFACE'),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue