瀏覽代碼

Vulkan support on Mac OS X introduces a link time dependency (CAMetalLayer) on 10.11 and newer

Sam Lantinga 8 年之前
父節點
當前提交
e8b114ecfc
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/SDL_config_macosx.h

+ 2 - 2
include/SDL_config_macosx.h

@@ -175,8 +175,8 @@
 #endif
 
 /* Enable Vulkan support */
-/* Metal/MoltenVK/Vulkan only supported on 64-bit architectures */
-#if TARGET_CPU_X86_64
+/* Metal/MoltenVK/Vulkan only supported on 64-bit architectures with 10.11+ */
+#if TARGET_CPU_X86_64 && (MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)
 #define SDL_VIDEO_VULKAN 1
 #else
 #define  SDL_VIDEO_VULKAN 0