Module: Mesa Branch: main Commit: 29b8097408f06cd043203fe9f7306668ebac5853 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=29b8097408f06cd043203fe9f7306668ebac5853
Author: Jason Ekstrand <[email protected]> Date: Thu Mar 24 11:33:19 2022 -0500 anv: Enable VK_EXT_debug_utils It's implemented in common code as long as you use vk_command_buffer. Acked-by: Emma Anholt <[email protected]> Acked-by: Mike Blumenkrantz <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15560> --- src/intel/vulkan/anv_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index f643c46adce..1438a5dcf3f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -143,6 +143,7 @@ static const struct vk_instance_extension_table instance_extensions = { .KHR_external_semaphore_capabilities = true, .KHR_get_physical_device_properties2 = true, .EXT_debug_report = true, + .EXT_debug_utils = true, #ifdef ANV_USE_WSI_PLATFORM .KHR_get_surface_capabilities2 = true,
