Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Rebohle <philip.rebohle@tu-dortmund.de>2023-05-12 12:25:55 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2023-05-12 12:26:07 +0300
commitcae0a1cef3f4917cf525c5546da302ff5f968e8e (patch)
tree6e40639f5c2c7e004634d92b7b4068546872a2d0
parent14eb469005fd0270d95133e3c83f9e4c5d1f405d (diff)
[meta] Release 2.2v2.2
-rw-r--r--RELEASE2
-rw-r--r--meson.build2
-rw-r--r--src/dxvk/dxvk_instance.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/RELEASE b/RELEASE
index 879b416e..8bbe6cf7 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1 +1 @@
-2.1
+2.2
diff --git a/meson.build b/meson.build
index 2a576912..f465df9b 100644
--- a/meson.build
+++ b/meson.build
@@ -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()
diff --git a/src/dxvk/dxvk_instance.cpp b/src/dxvk/dxvk_instance.cpp
index 56bfb0d5..dc19d5e2 100644
--- a/src/dxvk/dxvk_instance.cpp
+++ b/src/dxvk/dxvk_instance.cpp
@@ -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 };