panvk: Enable VK_EXT_debug_report and VK_EXT_debug_utils

They're both implemented in common code as long as you use
vk_command_buffer.

Acked-by: Emma Anholt <emma@anholt.net>
Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15560>
This commit is contained in:
Jason Ekstrand 2022-03-24 11:33:46 -05:00 committed by Marge Bot
parent 29b8097408
commit cc78a3a820
1 changed files with 3 additions and 0 deletions

View File

@ -137,6 +137,9 @@ panvk_EnumerateInstanceVersion(uint32_t *pApiVersion)
static const struct vk_instance_extension_table panvk_instance_extensions = {
.KHR_get_physical_device_properties2 = true,
.EXT_debug_report = true,
.EXT_debug_utils = true,
#ifdef PANVK_USE_WSI_PLATFORM
.KHR_surface = true,
#endif