[Bf-blender-cvs] [e0cacb8] master: OSX: refinement for last fullscreen condition commit

Jens Verwiebe noreply at git.blender.org
Tue Oct 14 13:17:31 CEST 2014


Commit: e0cacb808c0815d699a92f845b6f7fef02e7dc3c
Author: Jens Verwiebe
Date:   Tue Oct 14 13:17:14 2014 +0200
Branches: master
https://developer.blender.org/rBe0cacb808c0815d699a92f845b6f7fef02e7dc3c

OSX: refinement for last fullscreen condition commit

===================================================================

M	intern/ghost/intern/GHOST_WindowCocoa.mm

===================================================================

diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index af2ff58..58ea9ac 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -634,17 +634,15 @@ GHOST_WindowCocoa::GHOST_WindowCocoa(
 	if (state == GHOST_kWindowStateFullScreen)
 		setState(GHOST_kWindowStateFullScreen);
 
-	// Starting with 10.9 (darwin 13.x.x), we always use Lion fullscreen, since it
-	// now has better multi-monitor support for fullscreen
+	// Starting with 10.9 (darwin 13.x.x), we can use Lion fullscreen,
+	// since it now has better multi-monitor support
     // if the screens are spawned, additional screens get useless,
     // so we only use lionStyleFullScreen when screens have separate spaces
     
-	char darwin_ver[10];
-	size_t len = sizeof(darwin_ver);
-	sysctlbyname("kern.osrelease", &darwin_ver, &len, NULL, 0);
-	if(darwin_ver[0] == '1' && darwin_ver[1] >= '3' && [NSScreen screensHaveSeparateSpaces]) {
-		m_lionStyleFullScreen = true;
-	}
+    if ([NSScreen respondsToSelector:@selector(screensHaveSeparateSpaces)] && [NSScreen screensHaveSeparateSpaces]) {
+        // implies we are on >= OSX 10.9
+        m_lionStyleFullScreen = true;
+    }
 	
 	[pool drain];
 }




More information about the Bf-blender-cvs mailing list