From ede4081253337eb420aad0e0ef77b27091e861d3 Mon Sep 17 00:00:00 2001 From: Masato Nakasaka Date: Tue, 16 Sep 2025 17:00:17 +0900 Subject: [PATCH] Fix compile error in Mac Metal is preferred so we're disabling Vulkan for now --- discover/gpu_info_vulkan.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discover/gpu_info_vulkan.c b/discover/gpu_info_vulkan.c index 9ebe79e82..0ff0ae581 100644 --- a/discover/gpu_info_vulkan.c +++ b/discover/gpu_info_vulkan.c @@ -1,3 +1,4 @@ +#ifndef __APPLE__ #include "gpu_info_vulkan.h" #include @@ -236,3 +237,5 @@ void vk_release(vk_handle_t rh) { UNLOAD_LIBRARY(rh.vk_handle); rh.vk_handle = NULL; } + +#endif // __APPLE__ \ No newline at end of file