Fix compile error in Mac

Metal is preferred so we're disabling Vulkan for now
This commit is contained in:
Masato Nakasaka 2025-09-16 17:00:17 +09:00
parent da466f4f86
commit ede4081253
1 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#ifndef __APPLE__
#include "gpu_info_vulkan.h"
#include <string.h>
@ -236,3 +237,5 @@ void vk_release(vk_handle_t rh) {
UNLOAD_LIBRARY(rh.vk_handle);
rh.vk_handle = NULL;
}
#endif // __APPLE__