centralizing driver/vulkan versions in build script
Test / build_and_test (push) Successful in 27s
Build / build (push) Failing after 28s

This commit is contained in:
2026-06-16 03:17:08 +02:00
parent da0e6f86d2
commit 3b292d6808
5 changed files with 26 additions and 7 deletions
+6 -2
View File
@@ -56,8 +56,12 @@ pub const VULKAN_VENDOR_ID: i32 = @intFromEnum(vk.VendorId.ape);
/// Default driver name
pub const DRIVER_NAME = "Unnamed Ape Driver";
/// Default Vulkan version
pub const VULKAN_VERSION = vk.makeApiVersion(0, 1, 0, 0);
pub const DRIVER_VERSION = vk.makeApiVersion(
0,
config.driver_version.major,
config.driver_version.minor,
config.driver_version.patch,
);
/// Maximum number of descriptor sets per pipeline
pub const VULKAN_MAX_DESCRIPTOR_SETS = 8;