winevulkan: Enable Vulkan 1.1.

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Józef Kucia 2019-03-20 13:11:37 +01:00 committed by Alexandre Julliard
parent 44c2de5ba4
commit ccfdf651d1
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ LOGGER = logging.Logger("vulkan")
LOGGER.addHandler(logging.StreamHandler())
VK_XML_VERSION = "1.1.104"
WINE_VK_VERSION = (1, 0)
WINE_VK_VERSION = (1, 1)
# Filenames to create.
WINE_VULKAN_H = "../../include/wine/vulkan.h"

View File

@ -38,7 +38,7 @@
#ifndef __WINE_VULKAN_THUNKS_H
#define __WINE_VULKAN_THUNKS_H
#define WINE_VK_VERSION VK_API_VERSION_1_0
#define WINE_VK_VERSION VK_API_VERSION_1_1
/* Functions for which we have custom implementations outside of the thunks. */
VkResult WINAPI wine_vkAllocateCommandBuffers(VkDevice device, const VkCommandBufferAllocateInfo *pAllocateInfo, VkCommandBuffer *pCommandBuffers);