mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix non-HiDPI mode on HiDPI displays on macOS Catalina.
This commit is contained in:
parent
18d378e3d5
commit
509afcea92
@ -339,6 +339,8 @@ static CVReturn DisplayLinkCallback(CVDisplayLinkRef displayLink, const CVTimeSt
|
||||
CGFloat oldBackingScaleFactor = [[[notification userInfo] objectForKey:@"NSBackingPropertyOldScaleFactorKey"] doubleValue];
|
||||
if (OS_OSX::singleton->is_hidpi_allowed()) {
|
||||
[OS_OSX::singleton->window_view setWantsBestResolutionOpenGLSurface:YES];
|
||||
} else {
|
||||
[OS_OSX::singleton->window_view setWantsBestResolutionOpenGLSurface:NO];
|
||||
}
|
||||
|
||||
if (newBackingScaleFactor != oldBackingScaleFactor) {
|
||||
@ -1492,6 +1494,8 @@ Error OS_OSX::initialize(const VideoMode &p_desired, int p_video_driver, int p_a
|
||||
[window_view setWantsBestResolutionOpenGLSurface:YES];
|
||||
//if (current_videomode.resizable)
|
||||
[window_object setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
|
||||
} else {
|
||||
[window_view setWantsBestResolutionOpenGLSurface:NO];
|
||||
}
|
||||
|
||||
//[window_object setTitle:[NSString stringWithUTF8String:"GodotEnginies"]];
|
||||
|
Loading…
Reference in New Issue
Block a user