mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Fixed building with an older Mac OS X SDK
This commit is contained in:
parent
e8b114ecfc
commit
1067b528d3
@ -176,7 +176,7 @@
|
|||||||
|
|
||||||
/* Enable Vulkan support */
|
/* Enable Vulkan support */
|
||||||
/* Metal/MoltenVK/Vulkan only supported on 64-bit architectures with 10.11+ */
|
/* Metal/MoltenVK/Vulkan only supported on 64-bit architectures with 10.11+ */
|
||||||
#if TARGET_CPU_X86_64 && (MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)
|
#if TARGET_CPU_X86_64 && (MAC_OS_X_VERSION_MAX_REQUIRED >= 101100)
|
||||||
#define SDL_VIDEO_VULKAN 1
|
#define SDL_VIDEO_VULKAN 1
|
||||||
#else
|
#else
|
||||||
#define SDL_VIDEO_VULKAN 0
|
#define SDL_VIDEO_VULKAN 0
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
/* Return a Metal-compatible layer. */
|
/* Return a Metal-compatible layer. */
|
||||||
+ (Class)layerClass
|
+ (Class)layerClass
|
||||||
{
|
{
|
||||||
return [CAMetalLayer class];
|
return NSClassFromString(@"CAMetalLayer");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Indicate the view wants to draw using a backing layer instead of drawRect. */
|
/* Indicate the view wants to draw using a backing layer instead of drawRect. */
|
||||||
|
Loading…
Reference in New Issue
Block a user