2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2016-10-19 22:50:54 +00:00
|
|
|
// GLFW 3.3 macOS - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2016-11-21 15:23:59 +00:00
|
|
|
// Copyright (c) 2009-2016 Camilla Löwy <elmindreda@glfw.org>
|
2010-09-07 15:34:51 +00:00
|
|
|
//
|
|
|
|
// 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-16 01:25:36 +00:00
|
|
|
|
2016-06-14 10:27:19 +00:00
|
|
|
static void makeContextCurrentNSGL(_GLFWwindow* window)
|
2016-03-28 11:19:31 +00:00
|
|
|
{
|
|
|
|
if (window)
|
|
|
|
[window->context.nsgl.object makeCurrentContext];
|
|
|
|
else
|
|
|
|
[NSOpenGLContext clearCurrentContext];
|
|
|
|
|
|
|
|
_glfwPlatformSetCurrentContext(window);
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:27:19 +00:00
|
|
|
static void swapBuffersNSGL(_GLFWwindow* window)
|
2016-03-28 11:19:31 +00:00
|
|
|
{
|
|
|
|
// ARP appears to be unnecessary, but this is future-proof
|
|
|
|
[window->context.nsgl.object flushBuffer];
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:27:19 +00:00
|
|
|
static void swapIntervalNSGL(int interval)
|
2016-03-28 11:19:31 +00:00
|
|
|
{
|
|
|
|
_GLFWwindow* window = _glfwPlatformGetCurrentContext();
|
|
|
|
|
|
|
|
GLint sync = interval;
|
|
|
|
[window->context.nsgl.object setValues:&sync
|
|
|
|
forParameter:NSOpenGLCPSwapInterval];
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:27:19 +00:00
|
|
|
static int extensionSupportedNSGL(const char* extension)
|
2016-03-28 11:19:31 +00:00
|
|
|
{
|
|
|
|
// There are no NSGL extensions
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:27:19 +00:00
|
|
|
static GLFWglproc getProcAddressNSGL(const char* procname)
|
2016-03-28 11:19:31 +00:00
|
|
|
{
|
|
|
|
CFStringRef symbolName = CFStringCreateWithCString(kCFAllocatorDefault,
|
|
|
|
procname,
|
|
|
|
kCFStringEncodingASCII);
|
|
|
|
|
|
|
|
GLFWglproc symbol = CFBundleGetFunctionPointerForName(_glfw.nsgl.framework,
|
|
|
|
symbolName);
|
|
|
|
|
|
|
|
CFRelease(symbolName);
|
|
|
|
|
|
|
|
return symbol;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy the OpenGL context
|
|
|
|
//
|
2016-06-14 10:27:19 +00:00
|
|
|
static void destroyContextNSGL(_GLFWwindow* window)
|
2016-03-28 11:19:31 +00:00
|
|
|
{
|
|
|
|
[window->context.nsgl.pixelFormat release];
|
|
|
|
window->context.nsgl.pixelFormat = nil;
|
|
|
|
|
|
|
|
[window->context.nsgl.object release];
|
|
|
|
window->context.nsgl.object = nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-16 01:25:36 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2012-12-29 23:45:22 +00:00
|
|
|
////// GLFW internal API //////
|
2010-09-16 01:25:36 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-13 14:03:44 +00:00
|
|
|
// Initialize OpenGL support
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2015-12-10 16:10:05 +00:00
|
|
|
GLFWbool _glfwInitNSGL(void)
|
2012-08-13 14:03:44 +00:00
|
|
|
{
|
2016-07-20 10:52:06 +00:00
|
|
|
if (_glfw.nsgl.framework)
|
|
|
|
return GLFW_TRUE;
|
|
|
|
|
2013-05-02 20:41:09 +00:00
|
|
|
_glfw.nsgl.framework =
|
|
|
|
CFBundleGetBundleWithIdentifier(CFSTR("com.apple.opengl"));
|
|
|
|
if (_glfw.nsgl.framework == NULL)
|
|
|
|
{
|
2015-03-10 18:51:14 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2013-05-02 20:41:09 +00:00
|
|
|
"NSGL: Failed to locate OpenGL framework");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2013-05-02 20:41:09 +00:00
|
|
|
}
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2012-08-13 14:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Terminate OpenGL support
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2015-12-03 17:16:46 +00:00
|
|
|
void _glfwTerminateNSGL(void)
|
2012-08-13 14:03:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-12-29 23:58:18 +00:00
|
|
|
// Create the OpenGL context
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2015-12-10 16:10:05 +00:00
|
|
|
GLFWbool _glfwCreateContextNSGL(_GLFWwindow* window,
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
|
|
|
unsigned int attributeCount = 0;
|
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
if (ctxconfig->client == GLFW_OPENGL_ES_API)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2015-08-09 11:37:27 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2016-10-19 22:50:54 +00:00
|
|
|
"NSGL: OpenGL ES is not available on macOS");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2012-12-29 23:58:18 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->major > 2)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2016-12-03 18:32:00 +00:00
|
|
|
if (ctxconfig->major == 3 && ctxconfig->minor < 2)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
|
2016-12-06 12:58:16 +00:00
|
|
|
"NSGL: The targeted version of macOS does not support OpenGL 3.0 or 3.1 but may support 3.2 and above");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2012-12-29 23:58:18 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 18:32:00 +00:00
|
|
|
if (!ctxconfig->forward || ctxconfig->profile != GLFW_OPENGL_CORE_PROFILE)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
|
2016-12-03 18:32:00 +00:00
|
|
|
"NSGL: The targeted version of macOS only supports forward-compatible core profile contexts for OpenGL 3.2 and above");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2012-12-29 23:58:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-20 18:12:59 +00:00
|
|
|
// Context robustness modes (GL_KHR_robustness) are not yet supported on
|
2016-10-19 22:50:54 +00:00
|
|
|
// macOS but are not a hard constraint, so ignore and continue
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2014-08-21 17:21:45 +00:00
|
|
|
// Context release behaviors (GL_KHR_context_flush_control) are not yet
|
2016-10-19 22:50:54 +00:00
|
|
|
// supported on macOS but are not a hard constraint, so ignore and continue
|
2014-08-21 17:21:45 +00:00
|
|
|
|
2012-12-29 23:58:18 +00:00
|
|
|
#define ADD_ATTR(x) { attributes[attributeCount++] = x; }
|
|
|
|
#define ADD_ATTR2(x, y) { ADD_ATTR(x); ADD_ATTR(y); }
|
|
|
|
|
|
|
|
// Arbitrary array size here
|
|
|
|
NSOpenGLPixelFormatAttribute attributes[40];
|
|
|
|
|
2014-12-27 21:31:30 +00:00
|
|
|
ADD_ATTR(NSOpenGLPFAAccelerated);
|
2013-05-02 15:35:09 +00:00
|
|
|
ADD_ATTR(NSOpenGLPFAClosestPolicy);
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2014-12-27 21:28:13 +00:00
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 101000
|
|
|
|
if (ctxconfig->major >= 4)
|
2014-11-04 23:33:43 +00:00
|
|
|
{
|
2014-12-27 21:28:13 +00:00
|
|
|
ADD_ATTR2(NSOpenGLPFAOpenGLProfile, NSOpenGLProfileVersion4_1Core);
|
2014-11-04 23:33:43 +00:00
|
|
|
}
|
|
|
|
else
|
2012-12-29 23:58:18 +00:00
|
|
|
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/
|
2014-12-27 21:28:13 +00:00
|
|
|
if (ctxconfig->major >= 3)
|
|
|
|
{
|
|
|
|
ADD_ATTR2(NSOpenGLPFAOpenGLProfile, NSOpenGLProfileVersion3_2Core);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctxconfig->major <= 2)
|
2014-11-04 23:33:43 +00:00
|
|
|
{
|
|
|
|
if (fbconfig->auxBuffers != GLFW_DONT_CARE)
|
|
|
|
ADD_ATTR2(NSOpenGLPFAAuxBuffers, fbconfig->auxBuffers);
|
|
|
|
|
|
|
|
if (fbconfig->accumRedBits != GLFW_DONT_CARE &&
|
|
|
|
fbconfig->accumGreenBits != GLFW_DONT_CARE &&
|
|
|
|
fbconfig->accumBlueBits != GLFW_DONT_CARE &&
|
|
|
|
fbconfig->accumAlphaBits != GLFW_DONT_CARE)
|
|
|
|
{
|
|
|
|
const int accumBits = fbconfig->accumRedBits +
|
|
|
|
fbconfig->accumGreenBits +
|
|
|
|
fbconfig->accumBlueBits +
|
|
|
|
fbconfig->accumAlphaBits;
|
|
|
|
|
|
|
|
ADD_ATTR2(NSOpenGLPFAAccumSize, accumBits);
|
|
|
|
}
|
|
|
|
}
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
if (fbconfig->redBits != GLFW_DONT_CARE &&
|
|
|
|
fbconfig->greenBits != GLFW_DONT_CARE &&
|
|
|
|
fbconfig->blueBits != GLFW_DONT_CARE)
|
|
|
|
{
|
|
|
|
int colorBits = fbconfig->redBits +
|
|
|
|
fbconfig->greenBits +
|
|
|
|
fbconfig->blueBits;
|
|
|
|
|
2016-10-19 22:50:54 +00:00
|
|
|
// macOS needs non-zero color size, so set reasonable values
|
2014-04-08 16:57:43 +00:00
|
|
|
if (colorBits == 0)
|
|
|
|
colorBits = 24;
|
|
|
|
else if (colorBits < 15)
|
|
|
|
colorBits = 15;
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
ADD_ATTR2(NSOpenGLPFAColorSize, colorBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fbconfig->alphaBits != GLFW_DONT_CARE)
|
2012-12-29 23:58:18 +00:00
|
|
|
ADD_ATTR2(NSOpenGLPFAAlphaSize, fbconfig->alphaBits);
|
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
if (fbconfig->depthBits != GLFW_DONT_CARE)
|
2012-12-29 23:58:18 +00:00
|
|
|
ADD_ATTR2(NSOpenGLPFADepthSize, fbconfig->depthBits);
|
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
if (fbconfig->stencilBits != GLFW_DONT_CARE)
|
2012-12-29 23:58:18 +00:00
|
|
|
ADD_ATTR2(NSOpenGLPFAStencilSize, fbconfig->stencilBits);
|
|
|
|
|
|
|
|
if (fbconfig->stereo)
|
2016-10-08 23:39:31 +00:00
|
|
|
{
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 101200
|
|
|
|
_glfwInputError(GLFW_FORMAT_UNAVAILABLE,
|
|
|
|
"NSGL: Stereo rendering is deprecated");
|
|
|
|
return GLFW_FALSE;
|
|
|
|
#else
|
2012-12-29 23:58:18 +00:00
|
|
|
ADD_ATTR(NSOpenGLPFAStereo);
|
2016-10-08 23:39:31 +00:00
|
|
|
#endif
|
|
|
|
}
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2014-04-24 17:21:10 +00:00
|
|
|
if (fbconfig->doublebuffer)
|
|
|
|
ADD_ATTR(NSOpenGLPFADoubleBuffer);
|
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
if (fbconfig->samples != GLFW_DONT_CARE)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2014-04-08 16:57:43 +00:00
|
|
|
if (fbconfig->samples == 0)
|
|
|
|
{
|
|
|
|
ADD_ATTR2(NSOpenGLPFASampleBuffers, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ADD_ATTR2(NSOpenGLPFASampleBuffers, 1);
|
|
|
|
ADD_ATTR2(NSOpenGLPFASamples, fbconfig->samples);
|
|
|
|
}
|
2012-12-29 23:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: All NSOpenGLPixelFormats on the relevant cards support sRGB
|
2015-01-05 20:55:15 +00:00
|
|
|
// framebuffer, so there's no need (and no way) to request it
|
2012-12-29 23:58:18 +00:00
|
|
|
|
|
|
|
ADD_ATTR(0);
|
|
|
|
|
|
|
|
#undef ADD_ATTR
|
|
|
|
#undef ADD_ATTR2
|
|
|
|
|
2015-11-09 15:48:55 +00:00
|
|
|
window->context.nsgl.pixelFormat =
|
2012-12-29 23:58:18 +00:00
|
|
|
[[NSOpenGLPixelFormat alloc] initWithAttributes:attributes];
|
2015-11-09 15:48:55 +00:00
|
|
|
if (window->context.nsgl.pixelFormat == nil)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2015-09-16 14:24:21 +00:00
|
|
|
_glfwInputError(GLFW_FORMAT_UNAVAILABLE,
|
|
|
|
"NSGL: Failed to find a suitable pixel format");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2012-12-29 23:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NSOpenGLContext* share = NULL;
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->share)
|
2015-11-09 15:48:55 +00:00
|
|
|
share = ctxconfig->share->context.nsgl.object;
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2015-11-09 15:48:55 +00:00
|
|
|
window->context.nsgl.object =
|
|
|
|
[[NSOpenGLContext alloc] initWithFormat:window->context.nsgl.pixelFormat
|
2012-12-29 23:58:18 +00:00
|
|
|
shareContext:share];
|
2015-11-09 15:48:55 +00:00
|
|
|
if (window->context.nsgl.object == nil)
|
2012-12-29 23:58:18 +00:00
|
|
|
{
|
2015-03-10 18:51:14 +00:00
|
|
|
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
|
2013-08-26 20:48:07 +00:00
|
|
|
"NSGL: Failed to create OpenGL context");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2012-12-29 23:58:18 +00:00
|
|
|
}
|
|
|
|
|
2015-11-09 15:48:55 +00:00
|
|
|
[window->context.nsgl.object setView:window->ns.view];
|
2012-12-29 23:58:18 +00:00
|
|
|
|
2016-06-14 10:27:19 +00:00
|
|
|
window->context.makeCurrent = makeContextCurrentNSGL;
|
|
|
|
window->context.swapBuffers = swapBuffersNSGL;
|
|
|
|
window->context.swapInterval = swapIntervalNSGL;
|
|
|
|
window->context.extensionSupported = extensionSupportedNSGL;
|
|
|
|
window->context.getProcAddress = getProcAddressNSGL;
|
|
|
|
window->context.destroy = destroyContextNSGL;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
return GLFW_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 21:38:14 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI id glfwGetNSGLContext(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(nil);
|
2015-06-18 12:03:02 +00:00
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
if (window->context.client == GLFW_NO_API)
|
2015-06-18 12:03:02 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_NO_WINDOW_CONTEXT, NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-09 15:48:55 +00:00
|
|
|
return window->context.nsgl.object;
|
2013-01-15 21:38:14 +00:00
|
|
|
}
|
|
|
|
|