From 8b9459466c3824e563d84baf129d1456cf118139 Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Sun, 7 Jun 2015 17:27:46 -0600 Subject: [PATCH] debug_report: Add debug message flag --- include/vk_debug_report_lunarg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/vk_debug_report_lunarg.h b/include/vk_debug_report_lunarg.h index eb8f9f4b..08ed91c2 100644 --- a/include/vk_debug_report_lunarg.h +++ b/include/vk_debug_report_lunarg.h @@ -60,6 +60,7 @@ typedef enum VkDbgReportFlags_ VK_DBG_REPORT_WARN_BIT = VK_BIT(1), VK_DBG_REPORT_PERF_WARN_BIT = VK_BIT(2), VK_DBG_REPORT_ERROR_BIT = VK_BIT(3), + VK_DBG_REPORT_DEBUG_BIT = VK_BIT(4), } VkDbgReportFlags; #define VK_DEBUG_REPORT_ENUM_EXTEND(type, id) ((type)(VK_DEBUG_REPORT_EXTENSION_NUMBER * -1000 + (id))) -- 2.34.1