mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-23 21:20:21 +01:00
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)
(cherry picked from commit abe110df01)
This commit is contained in:
parent
d8eea63121
commit
a4bc03fdfe
1 changed files with 4 additions and 4 deletions
|
|
@ -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,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue