1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-09 07:37:25 -04:00
glfw/src/cocoa/cocoa_fullscreen.m

105 lines
4.0 KiB
Mathematica
Raw Normal View History

2010-09-07 11:34:51 -04:00
//========================================================================
// GLFW - An OpenGL framework
// Platform: Cocoa/NSOpenGL
2010-09-07 11:41:26 -04:00
// API Version: 3.0
2010-09-07 11:34:51 -04:00
// WWW: http://www.glfw.org/
//------------------------------------------------------------------------
// Copyright (c) 2009-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would
// be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not
// be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source
// distribution.
//
//========================================================================
#include "internal.h"
2010-09-15 23:08:04 -04:00
2010-09-07 11:34:51 -04:00
//========================================================================
// Check whether the display mode should be included in enumeration
//========================================================================
2010-09-15 12:57:25 -04:00
static BOOL modeIsGood(NSDictionary* mode)
2010-09-07 11:34:51 -04:00
{
// This is a bit controversial, if you've got something other than an
// LCD computer monitor as an output device you might not want these
// checks. You might also want to reject modes which are interlaced,
// or TV out. There is no one-size-fits-all policy that can work here.
// This seems like a decent compromise, but certain applications may
// wish to patch this...
return [[mode objectForKey:(id)kCGDisplayBitsPerPixel] intValue] >= 15 &&
2010-09-15 23:08:04 -04:00
[mode objectForKey:(id)kCGDisplayModeIsSafeForHardware] != nil &&
[mode objectForKey:(id)kCGDisplayModeIsStretched] == nil;
2010-09-07 11:34:51 -04:00
}
//========================================================================
// Convert Core Graphics display mode to GLFW video mode
//========================================================================
2010-09-15 12:57:25 -04:00
static GLFWvidmode vidmodeFromCGDisplayMode(NSDictionary* mode)
2010-09-07 11:34:51 -04:00
{
2010-09-15 23:08:04 -04:00
unsigned int width =
[[mode objectForKey:(id)kCGDisplayWidth] unsignedIntValue];
unsigned int height =
[[mode objectForKey:(id)kCGDisplayHeight] unsignedIntValue];
unsigned int bps =
[[mode objectForKey:(id)kCGDisplayBitsPerSample] unsignedIntValue];
2010-09-07 11:34:51 -04:00
GLFWvidmode result;
2010-09-08 10:50:50 -04:00
result.width = width;
result.height = height;
result.redBits = bps;
result.greenBits = bps;
result.blueBits = bps;
2010-09-07 11:34:51 -04:00
return result;
}
2010-09-15 21:25:36 -04:00
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 11:34:51 -04:00
//========================================================================
// Get a list of available video modes
//========================================================================
2010-09-15 12:57:25 -04:00
int _glfwPlatformGetVideoModes(GLFWvidmode* list, int maxcount)
2010-09-07 11:34:51 -04:00
{
2010-09-15 12:57:25 -04:00
NSArray* modes = (NSArray*) CGDisplayAvailableModes(CGMainDisplayID());
2010-09-07 11:34:51 -04:00
unsigned int i, j = 0, n = [modes count];
2010-09-15 12:57:25 -04:00
2011-02-27 15:42:41 -05:00
for (i = 0; i < n && j < (unsigned)maxcount; i++)
2010-09-07 11:34:51 -04:00
{
NSDictionary *mode = [modes objectAtIndex:i];
2010-09-15 12:57:25 -04:00
if (modeIsGood(mode))
list[j++] = vidmodeFromCGDisplayMode(mode);
2010-09-07 11:34:51 -04:00
}
return j;
}
//========================================================================
// Get the desktop video mode
//========================================================================
2010-09-15 12:57:25 -04:00
void _glfwPlatformGetDesktopMode(GLFWvidmode *mode)
2010-09-07 11:34:51 -04:00
{
2010-09-15 12:57:25 -04:00
*mode = vidmodeFromCGDisplayMode(_glfwLibrary.NS.desktopMode);
2010-09-07 11:34:51 -04:00
}