Mesa (master): radv: use correct .specVersion for extensions

Emil Velikov evelikov at kemper.freedesktop.org
Wed Nov 9 21:47:37 UTC 2016


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

Author: Emil Velikov <emil.velikov at collabora.com>
Date:   Wed Nov  9 18:10:47 2016 +0000

radv: use correct .specVersion for extensions

Analogous to previous commit.

Cc: "13.0" <mesa-stable at lists.freedesktop.org>
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
Reviewed-by: Dave Airlie <airlied at redhat.com> (IRC)

---

 src/amd/vulkan/radv_device.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
index 9f05ae4..390fde0 100644
--- a/src/amd/vulkan/radv_device.c
+++ b/src/amd/vulkan/radv_device.c
@@ -113,19 +113,19 @@ static const VkExtensionProperties global_extensions[] = {
 #ifdef VK_USE_PLATFORM_XCB_KHR
 	{
 		.extensionName = VK_KHR_XCB_SURFACE_EXTENSION_NAME,
-		.specVersion = 5,
+		.specVersion = 6,
 	},
 #endif
 #ifdef VK_USE_PLATFORM_XLIB_KHR
 	{
 		.extensionName = VK_KHR_XLIB_SURFACE_EXTENSION_NAME,
-		.specVersion = 5,
+		.specVersion = 6,
 	},
 #endif
 #ifdef VK_USE_PLATFORM_WAYLAND_KHR
 	{
 		.extensionName = VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME,
-		.specVersion = 4,
+		.specVersion = 5,
 	},
 #endif
 };
@@ -133,7 +133,7 @@ static const VkExtensionProperties global_extensions[] = {
 static const VkExtensionProperties device_extensions[] = {
 	{
 		.extensionName = VK_KHR_SWAPCHAIN_EXTENSION_NAME,
-		.specVersion = 67,
+		.specVersion = 68,
 	},
 };
 




More information about the mesa-commit mailing list