1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-11-29 19:24:10 +01:00

[dxvk] Fix some legacy cruft around Vulkan instance creation

This commit is contained in:
Philip Rebohle 2018-09-15 14:16:56 +02:00
parent dc29eb4d07
commit b6bf72aeb6
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -68,8 +68,8 @@ namespace dxvk {
appInfo.pApplicationName = nullptr;
appInfo.applicationVersion = 0;
appInfo.pEngineName = "DXVK";
appInfo.engineVersion = VK_MAKE_VERSION(0, 0, 1);
appInfo.apiVersion = VK_MAKE_VERSION(1, 0, 47);
appInfo.engineVersion = VK_MAKE_VERSION(0, 7, 2);
appInfo.apiVersion = 0;
VkInstanceCreateInfo info;
info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;