Mesa (main): panvk: Enable VK_EXT_debug_report and VK_EXT_debug_utils

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Apr 6 01:42:29 UTC 2022


Module: Mesa
Branch: main
Commit: cc78a3a820b855a24d348058e773cfa2cdb9f9cb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cc78a3a820b855a24d348058e773cfa2cdb9f9cb

Author: Jason Ekstrand <jason.ekstrand at collabora.com>
Date:   Thu Mar 24 11:33:46 2022 -0500

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 at anholt.net>
Acked-by: Mike Blumenkrantz <michael.blumenkrantz at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15560>

---

 src/panfrost/vulkan/panvk_device.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/panfrost/vulkan/panvk_device.c b/src/panfrost/vulkan/panvk_device.c
index 706a8e68810..5a084e17ab5 100644
--- a/src/panfrost/vulkan/panvk_device.c
+++ b/src/panfrost/vulkan/panvk_device.c
@@ -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



More information about the mesa-commit mailing list