From 73441c97806b70609b597ae7966b43a4544fe507 Mon Sep 17 00:00:00 2001 From: "Nakasaka, Masato" Date: Wed, 17 Sep 2025 15:11:13 +0900 Subject: [PATCH] Removed unneeded function call Somehow removing this call fixed the crashing when Vulkan header was removed --- discover/gpu_info_vulkan.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/discover/gpu_info_vulkan.c b/discover/gpu_info_vulkan.c index 0ff0ae581..b9599978d 100644 --- a/discover/gpu_info_vulkan.c +++ b/discover/gpu_info_vulkan.c @@ -4,9 +4,6 @@ #include int is_extension_supported(vk_handle_t* rh, VkPhysicalDevice device, char* extension) { - VkPhysicalDeviceProperties properties; - (*rh->vkGetPhysicalDeviceProperties)(device, &properties); - uint32_t extensionCount; (*rh->vkEnumerateDeviceExtensionProperties)(device, NULL, &extensionCount, NULL);