radv: use correct .specVersion for extensions
Analogous to previous commit. Cc: "13.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Dave Airlie <airlied@redhat.com> (IRC)
This commit is contained in:

committed by
Emil Velikov

parent
f373a91a52
commit
abe110df01
@@ -113,19 +113,19 @@ static const VkExtensionProperties global_extensions[] = {
|
|||||||
#ifdef VK_USE_PLATFORM_XCB_KHR
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
||||||
{
|
{
|
||||||
.extensionName = VK_KHR_XCB_SURFACE_EXTENSION_NAME,
|
.extensionName = VK_KHR_XCB_SURFACE_EXTENSION_NAME,
|
||||||
.specVersion = 5,
|
.specVersion = 6,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
||||||
{
|
{
|
||||||
.extensionName = VK_KHR_XLIB_SURFACE_EXTENSION_NAME,
|
.extensionName = VK_KHR_XLIB_SURFACE_EXTENSION_NAME,
|
||||||
.specVersion = 5,
|
.specVersion = 6,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
||||||
{
|
{
|
||||||
.extensionName = VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME,
|
.extensionName = VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME,
|
||||||
.specVersion = 4,
|
.specVersion = 5,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
@@ -133,7 +133,7 @@ static const VkExtensionProperties global_extensions[] = {
|
|||||||
static const VkExtensionProperties device_extensions[] = {
|
static const VkExtensionProperties device_extensions[] = {
|
||||||
{
|
{
|
||||||
.extensionName = VK_KHR_SWAPCHAIN_EXTENSION_NAME,
|
.extensionName = VK_KHR_SWAPCHAIN_EXTENSION_NAME,
|
||||||
.specVersion = 67,
|
.specVersion = 68,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user