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>2021-02-28 03:04:41 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2021-03-01 18:49:02 +0300
commit5083b8474ce210d8678c7fe705c9281255e18819 (patch)
tree1bf2804a38f11ff78789c4f5385b2258d3320c19
parent9bdc491cb70785be448f179ac2414f4f38be05e2 (diff)
[meta] Release 1.8.1v1.8.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 62593409..a8fdfda1 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1 +1 @@
-1.8
+1.8.1
diff --git a/meson.build b/meson.build
index 2e563e82..14914760 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('dxvk', ['c', 'cpp'], version : 'v1.8', meson_version : '>= 0.46')
+project('dxvk', ['c', 'cpp'], version : 'v1.8.1', meson_version : '>= 0.46')
cpu_family = target_machine.cpu_family()
diff --git a/src/dxvk/dxvk_instance.cpp b/src/dxvk/dxvk_instance.cpp
index 197a1705..c1539f48 100644
--- a/src/dxvk/dxvk_instance.cpp
+++ b/src/dxvk/dxvk_instance.cpp
@@ -122,7 +122,7 @@ namespace dxvk {
appInfo.pApplicationName = appName.c_str();
appInfo.applicationVersion = 0;
appInfo.pEngineName = "DXVK";
- appInfo.engineVersion = VK_MAKE_VERSION(1, 8, 0);
+ appInfo.engineVersion = VK_MAKE_VERSION(1, 8, 1);
appInfo.apiVersion = VK_MAKE_VERSION(1, 1, 0);
VkInstanceCreateInfo info;