Commit ccfdf651 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

winevulkan: Enable Vulkan 1.1.

parent 44c2de5b
...@@ -65,7 +65,7 @@ LOGGER = logging.Logger("vulkan") ...@@ -65,7 +65,7 @@ LOGGER = logging.Logger("vulkan")
LOGGER.addHandler(logging.StreamHandler()) LOGGER.addHandler(logging.StreamHandler())
VK_XML_VERSION = "1.1.104" VK_XML_VERSION = "1.1.104"
WINE_VK_VERSION = (1, 0) WINE_VK_VERSION = (1, 1)
# Filenames to create. # Filenames to create.
WINE_VULKAN_H = "../../include/wine/vulkan.h" WINE_VULKAN_H = "../../include/wine/vulkan.h"
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
#ifndef __WINE_VULKAN_THUNKS_H #ifndef __WINE_VULKAN_THUNKS_H
#define __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. */ /* Functions for which we have custom implementations outside of the thunks. */
VkResult WINAPI wine_vkAllocateCommandBuffers(VkDevice device, const VkCommandBufferAllocateInfo *pAllocateInfo, VkCommandBuffer *pCommandBuffers); VkResult WINAPI wine_vkAllocateCommandBuffers(VkDevice device, const VkCommandBufferAllocateInfo *pAllocateInfo, VkCommandBuffer *pCommandBuffers);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment