Removed unneeded function call

Somehow removing this call fixed the crashing when Vulkan header was removed
This commit is contained in:
Nakasaka, Masato 2025-09-17 15:11:13 +09:00
parent 882278a258
commit 73441c9780
1 changed files with 0 additions and 3 deletions

View File

@ -4,9 +4,6 @@
#include <string.h>
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);