diff --git a/Cargo.lock b/Cargo.lock index 9312093..b49762d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1568,7 +1568,7 @@ dependencies = [ [[package]] name = "wluma" -version = "4.3.0" +version = "4.4.0" dependencies = [ "ash", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 7e2da87..4915464 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wluma" -version = "4.3.0" +version = "4.4.0" authors = ["Maxim Baz", "Cyril Levis"] edition = "2021" diff --git a/Makefile b/Makefile index 7ee043d..2cc5b93 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := wluma -VERSION := 4.3.0 +VERSION := 4.4.0 PREFIX ?= /usr LIB_DIR = $(DESTDIR)$(PREFIX)/lib diff --git a/src/frame/vulkan.rs b/src/frame/vulkan.rs index 5d8fed4..7e4a17c 100644 --- a/src/frame/vulkan.rs +++ b/src/frame/vulkan.rs @@ -7,7 +7,7 @@ use std::error::Error; use std::ffi::CString; use std::ops::Drop; -const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 3, 0); +const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 4, 0); const VULKAN_VERSION: u32 = vk::make_api_version(0, 1, 2, 0); const FINAL_MIP_LEVEL: u32 = 4; // Don't generate mipmaps beyond this level - GPU is doing too poor of a job averaging the colors