Module: Mesa Branch: main Commit: bdf52654ac2719daf13fe8e9cddaca9b4cc5c69e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=bdf52654ac2719daf13fe8e9cddaca9b4cc5c69e
Author: Jason Ekstrand <[email protected]> Date: Thu Mar 24 11:32:32 2022 -0500 turnip: 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/freedreno/vulkan/tu_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index 56e28abf3d9..26b30d9da7d 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -91,6 +91,7 @@ static const struct vk_instance_extension_table tu_instance_extensions_supported .KHR_surface = TU_HAS_SURFACE, .KHR_get_surface_capabilities2 = TU_HAS_SURFACE, .EXT_debug_report = true, + .EXT_debug_utils = true, #ifdef VK_USE_PLATFORM_WAYLAND_KHR .KHR_wayland_surface = true, #endif
