mirror of
https://github.com/glfw/glfw.git
synced 2024-11-26 06:14:35 +00:00
Attempt at fixing compilation errors for MacOS
This commit is contained in:
parent
fe1eddc2ad
commit
bbd5bcb7fd
@ -36,11 +36,11 @@
|
||||
#include <crt_externs.h>
|
||||
|
||||
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
|
||||
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101000
|
||||
NSAppearanceName const NSAppearanceNameVibrantLight = @"NSAppearanceNameVibrantLight";
|
||||
NSAppearanceName const NSAppearanceNameVibrantDark = @"NSAppearanceNameVibrantDark";
|
||||
#endif
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED < 101400
|
||||
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101400
|
||||
NSAppearanceName const NSAppearanceNameDarkAqua = @"NSAppearanceNameDarkAqua";
|
||||
NSAppearanceName const NSAppearanceNameAccessibilityHighContrastAqua = @"NSAppearanceNameAccessibilityAqua";
|
||||
NSAppearanceName const NSAppearanceNameAccessibilityHighContrastDarkAqua = @"NSAppearanceNameAccessibilityDarkAqua";
|
||||
|
@ -40,6 +40,7 @@
|
||||
#else
|
||||
typedef void* id;
|
||||
typedef void NSAppearance;
|
||||
typedef id NSString;
|
||||
#endif
|
||||
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED < 101300
|
||||
|
@ -1935,7 +1935,7 @@ GLFWtheme* _glfwGetThemeCocoa(_GLFWwindow* window)
|
||||
|
||||
if (@available(macOS 10.09, *))
|
||||
{
|
||||
nsAppearanceToGLFWTheme([window->ns.object appearance], theme);
|
||||
nsAppearanceToGLFWTheme([(NSWindow*)window->ns.object appearance], theme);
|
||||
}
|
||||
|
||||
if (@available(macOS 10.14, *)) {
|
||||
|
Loading…
Reference in New Issue
Block a user