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-01-24 16:54:09 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2023-01-24 16:54:09 +0300
commit2abc102d2c195dbeb41193237de67b17692fc245 (patch)
treeccfffd1a3d8c80a886478707edf07cac52ed9c90
parent61d72eebc1c4db2e9f89ade175ce14c3fa94e08f (diff)
[meta] Release 2.1v2.1
-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 cd5ac039..879b416e 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1 +1 @@
-2.0
+2.1
diff --git a/meson.build b/meson.build
index 39a28e05..2a576912 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('dxvk', ['c', 'cpp'], version : 'v2.0', meson_version : '>= 0.49', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
+project('dxvk', ['c', 'cpp'], version : 'v2.1', 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 7f73e6e4..fc1accc7 100644
--- a/src/dxvk/dxvk_instance.cpp
+++ b/src/dxvk/dxvk_instance.cpp
@@ -162,7 +162,7 @@ namespace dxvk {
VkApplicationInfo appInfo = { VK_STRUCTURE_TYPE_APPLICATION_INFO };
appInfo.pApplicationName = appName.c_str();
appInfo.pEngineName = "DXVK";
- appInfo.engineVersion = VK_MAKE_VERSION(2, 0, 0);
+ appInfo.engineVersion = VK_MAKE_VERSION(2, 1, 0);
appInfo.apiVersion = VK_MAKE_VERSION(1, 3, 0);
VkInstanceCreateInfo info = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };