radv: advertise VK_KHR_maintenance8

There is nothing to do for
VK_PIPELINE_CACHE_CREATE_INTERNALLY_SYNCHRONIZED_MERGE_BIT_KHR because
the vulkan/runtime code already locks the dstCache unconditionally.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33091>
This commit is contained in:
Samuel Pitoiset
2024-10-04 16:26:45 +02:00
committed by Marge Bot
parent 40131ddadc
commit d4ff011b12
2 changed files with 5 additions and 0 deletions

View File

@@ -33,3 +33,4 @@ shaderInt16 on panvk
shaderInt64 on panvk
imageCubeArray on panvk
VK_KHR_depth_clamp_zero_one on RADV
VK_KHR_maintenance8 on radv

View File

@@ -583,6 +583,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
.KHR_maintenance5 = true,
.KHR_maintenance6 = true,
.KHR_maintenance7 = true,
.KHR_maintenance8 = true,
.KHR_map_memory2 = true,
.KHR_multiview = true,
.KHR_performance_query = radv_perf_query_supported(pdev),
@@ -1321,6 +1322,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
/* VK_EXT_device_generated_commands */
.deviceGeneratedCommands = true,
.dynamicGeneratedPipelineLayout = true,
/* VK_KHR_maintenance8 */
.maintenance8 = true,
};
}