From 0a7210571ec632c2b5073e5c39641c406afda018 Mon Sep 17 00:00:00 2001 From: Ian Elliott Date: Fri, 4 Sep 2015 14:14:35 -0600 Subject: All extensions single revision number instead of major.minor.patch This was decided during the August face-to-face. Originally, the WSI extensions did it the normal OpenGL way (single revision number), and the debug extensions did it the new major.minor.patch way. When I tried to convert WSI, an objection was raised. We decided to go with the OpenGL way. This commit also changes vulkaninfo to report the single revision number. This commit also changes the extension "number" assigned to the 2 debug extensions, basd on a "registration" email that Ian Elliott sent to Jon Leech on 21 August, 2015. The initial set of "registered" extensions are (with their numbers): 1.VK_EXT_KHR_swapchain 2.VK_EXT_KHR_device_swapchain 3.VK_EXT_KHR_display 4.VK_EXT_KHR_display_swapchain 5.VK_EXT_LUNARG_debug_report 6.VK_EXT_LUNARG_debug_marker --- include/vk_debug_marker_lunarg.h | 4 ++-- include/vk_debug_report_lunarg.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/vk_debug_marker_lunarg.h b/include/vk_debug_marker_lunarg.h index 526778f5..c4579597 100644 --- a/include/vk_debug_marker_lunarg.h +++ b/include/vk_debug_marker_lunarg.h @@ -34,8 +34,8 @@ #include "vulkan.h" #include "vk_debug_report_lunarg.h" -#define VK_DEBUG_MARKER_EXTENSION_NUMBER 3 -#define VK_DEBUG_MARKER_EXTENSION_VERSION VK_MAKE_VERSION(0, 1, 0) +#define VK_DEBUG_MARKER_EXTENSION_NUMBER 6 +#define VK_DEBUG_MARKER_EXTENSION_REVISION 1 #ifdef __cplusplus extern "C" { diff --git a/include/vk_debug_report_lunarg.h b/include/vk_debug_report_lunarg.h index eeb84251..7131ae3b 100644 --- a/include/vk_debug_report_lunarg.h +++ b/include/vk_debug_report_lunarg.h @@ -34,8 +34,8 @@ #include "vulkan.h" -#define VK_DEBUG_REPORT_EXTENSION_NUMBER 2 -#define VK_DEBUG_REPORT_EXTENSION_VERSION VK_MAKE_VERSION(0, 1, 0) +#define VK_DEBUG_REPORT_EXTENSION_NUMBER 5 +#define VK_DEBUG_REPORT_EXTENSION_REVISION 1 #ifdef __cplusplus extern "C" { -- cgit v1.2.3