1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-21 13:54:18 +01:00

[meta] Release 2.4

This commit is contained in:
Philip Rebohle 2024-07-10 11:55:14 +02:00
parent d731608d5e
commit 008afc1c5f
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
2.3.1
2.4

View File

@ -1,4 +1,4 @@
project('dxvk', ['c', 'cpp'], version : 'v2.3.1', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
project('dxvk', ['c', 'cpp'], version : 'v2.4.0', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
pkg = import('pkgconfig')
cpu_family = target_machine.cpu_family()

View File

@ -182,7 +182,7 @@ namespace dxvk {
appInfo.pApplicationName = appName.c_str();
appInfo.applicationVersion = flags.raw();
appInfo.pEngineName = "DXVK";
appInfo.engineVersion = VK_MAKE_API_VERSION(0, 2, 3, 2);
appInfo.engineVersion = VK_MAKE_API_VERSION(0, 2, 4, 0);
appInfo.apiVersion = VK_MAKE_API_VERSION(0, 1, 3, 0);
VkInstanceCreateInfo info = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };