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-09-04 18:15:39 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2023-09-04 18:59:12 +0300
commit80e075406b1b7d9d2508c9dc05e9745b3d3cf7e2 (patch)
tree3d2f875515c7801f36c75eb950e4995870e07d4e
parenta53f0e81682af98b82e5c2c4834455dafa473bcc (diff)
[meta] Release 2.3v2.3
-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 8bbe6cf7..bb576dbd 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1 +1 @@
-2.2
+2.3
diff --git a/meson.build b/meson.build
index 724b3aee..b571729d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('dxvk', ['c', 'cpp'], version : 'v2.2', meson_version : '>= 0.49', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
+project('dxvk', ['c', 'cpp'], version : 'v2.3', 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 b32a3ea0..cffde93b 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, 2, 0);
+ appInfo.engineVersion = VK_MAKE_VERSION(2, 3, 0);
appInfo.apiVersion = VK_MAKE_VERSION(1, 3, 0);
VkInstanceCreateInfo info = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };