From 7fe14c7906b544283130d8810094b766900016f7 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 15 Nov 2025 19:02:41 +1100 Subject: [PATCH] fix queue selection bug --- vulkan.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkan.d b/vulkan.d index 8fe1411..28236a0 100644 --- a/vulkan.d +++ b/vulkan.d @@ -2712,7 +2712,7 @@ Init(PlatformHandles platform_handles, u64 permanent_mem, u64 frame_mem) continue; } - if(prop.queueFlags & (T_BIT | S_BIT)) + if(BitEq(prop.queueFlags, T_BIT | S_BIT)) { sparse = true; current.tfer_index = idx;