[meta] Release 2.2

This commit is contained in:
Philip Rebohle 2023-05-12 11:25:55 +02:00
parent 14eb469005
commit cae0a1cef3
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
2.1
2.2

View File

@ -1,4 +1,4 @@
project('dxvk', ['c', 'cpp'], version : 'v2.1', meson_version : '>= 0.49', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
project('dxvk', ['c', 'cpp'], version : 'v2.2', meson_version : '>= 0.49', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
cpu_family = target_machine.cpu_family()
platform = target_machine.system()

View File

@ -176,7 +176,7 @@ namespace dxvk {
VkApplicationInfo appInfo = { VK_STRUCTURE_TYPE_APPLICATION_INFO };
appInfo.pApplicationName = appName.c_str();
appInfo.pEngineName = "DXVK";
appInfo.engineVersion = VK_MAKE_VERSION(2, 1, 0);
appInfo.engineVersion = VK_MAKE_VERSION(2, 2, 0);
appInfo.apiVersion = VK_MAKE_VERSION(1, 3, 0);
VkInstanceCreateInfo info = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };