2012-11-27 15:02:26 +01:00
|
|
|
//========================================================================
|
2016-10-20 00:50:54 +02:00
|
|
|
// GLFW 3.3 macOS - www.glfw.org
|
2012-11-27 15:02:26 +01:00
|
|
|
//------------------------------------------------------------------------
|
2019-04-15 20:50:00 +02:00
|
|
|
// Copyright (c) 2009-2019 Camilla Löwy <elmindreda@glfw.org>
|
2012-11-27 15:02:26 +01: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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2019-11-06 17:25:16 +01:00
|
|
|
// NOTE: Many Cocoa enum values have been renamed and we need to build across
|
|
|
|
// SDK versions where one is unavailable or the other deprecated
|
|
|
|
// We use the newer names in code and these macros to handle compatibility
|
2019-03-27 01:26:39 +01:00
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101400
|
|
|
|
#define NSOpenGLContextParameterSwapInterval NSOpenGLCPSwapInterval
|
|
|
|
#define NSOpenGLContextParameterSurfaceOpacity NSOpenGLCPSurfaceOpacity
|
|
|
|
#endif
|
|
|
|
|
2014-04-08 16:30:11 +02:00
|
|
|
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextNSGL nsgl
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE _GLFWlibraryNSGL nsgl
|
2012-11-27 15:02:26 +01:00
|
|
|
|
2019-01-14 03:11:28 +01:00
|
|
|
#include <stdatomic.h>
|
|
|
|
|
2012-11-27 15:02:26 +01:00
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// NSGL-specific per-context data
|
|
|
|
//
|
2012-11-27 15:02:26 +01:00
|
|
|
typedef struct _GLFWcontextNSGL
|
|
|
|
{
|
2019-01-14 03:11:28 +01:00
|
|
|
id pixelFormat;
|
2019-02-13 02:16:09 +01:00
|
|
|
id object;
|
2012-11-27 15:02:26 +01:00
|
|
|
} _GLFWcontextNSGL;
|
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// NSGL-specific global data
|
|
|
|
//
|
2012-11-27 15:02:26 +01:00
|
|
|
typedef struct _GLFWlibraryNSGL
|
|
|
|
{
|
2014-09-02 19:42:43 +02:00
|
|
|
// dlopen handle for OpenGL.framework (for glfwGetProcAddress)
|
2015-12-08 15:10:23 +01:00
|
|
|
CFBundleRef framework;
|
2012-11-27 15:02:26 +01:00
|
|
|
} _GLFWlibraryNSGL;
|
|
|
|
|
|
|
|
|
2015-12-10 17:10:05 +01:00
|
|
|
GLFWbool _glfwInitNSGL(void);
|
2015-12-03 18:16:46 +01:00
|
|
|
void _glfwTerminateNSGL(void);
|
2015-12-10 17:10:05 +01:00
|
|
|
GLFWbool _glfwCreateContextNSGL(_GLFWwindow* window,
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig);
|
2015-12-03 18:16:46 +01:00
|
|
|
void _glfwDestroyContextNSGL(_GLFWwindow* window);
|
2014-01-22 01:23:35 +01:00
|
|
|
|