glfw/src/wgl_context.c

689 lines
22 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
2015-06-01 20:55:06 +00:00
// GLFW 3.2 WGL - www.glfw.org
2010-09-07 15:34:51 +00:00
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-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"
2012-08-12 14:46:29 +00:00
#include <stdlib.h>
#include <malloc.h>
#include <assert.h>
2012-08-12 14:46:29 +00:00
2010-09-07 15:34:51 +00:00
// Initialize WGL-specific extensions
2013-02-04 12:22:10 +00:00
//
2015-11-09 15:51:27 +00:00
static void loadExtensions(void)
{
// Functions for WGL_EXT_extension_string
// NOTE: These are needed by _glfwPlatformExtensionSupported
2015-11-09 15:51:27 +00:00
_glfw.wgl.GetExtensionsStringEXT = (PFNWGLGETEXTENSIONSSTRINGEXTPROC)
2015-12-06 15:13:42 +00:00
wglGetProcAddress("wglGetExtensionsStringEXT");
2015-11-09 15:51:27 +00:00
_glfw.wgl.GetExtensionsStringARB = (PFNWGLGETEXTENSIONSSTRINGARBPROC)
2015-12-06 15:13:42 +00:00
wglGetProcAddress("wglGetExtensionsStringARB");
// Functions for WGL_ARB_create_context
2015-11-09 15:51:27 +00:00
_glfw.wgl.CreateContextAttribsARB = (PFNWGLCREATECONTEXTATTRIBSARBPROC)
2015-12-06 15:13:42 +00:00
wglGetProcAddress("wglCreateContextAttribsARB");
// Functions for WGL_EXT_swap_control
2015-11-09 15:51:27 +00:00
_glfw.wgl.SwapIntervalEXT = (PFNWGLSWAPINTERVALEXTPROC)
2015-12-06 15:13:42 +00:00
wglGetProcAddress("wglSwapIntervalEXT");
// Functions for WGL_ARB_pixel_format
2015-11-09 15:51:27 +00:00
_glfw.wgl.GetPixelFormatAttribivARB = (PFNWGLGETPIXELFORMATATTRIBIVARBPROC)
2015-12-06 15:13:42 +00:00
wglGetProcAddress("wglGetPixelFormatAttribivARB");
// This needs to include every extension used below except for
// WGL_ARB_extensions_string and WGL_EXT_extensions_string
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_multisample =
_glfwPlatformExtensionSupported("WGL_ARB_multisample");
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_framebuffer_sRGB =
_glfwPlatformExtensionSupported("WGL_ARB_framebuffer_sRGB");
2015-11-09 15:51:27 +00:00
_glfw.wgl.EXT_framebuffer_sRGB =
_glfwPlatformExtensionSupported("WGL_EXT_framebuffer_sRGB");
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_create_context =
_glfwPlatformExtensionSupported("WGL_ARB_create_context");
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_create_context_profile =
_glfwPlatformExtensionSupported("WGL_ARB_create_context_profile");
2015-11-09 15:51:27 +00:00
_glfw.wgl.EXT_create_context_es2_profile =
_glfwPlatformExtensionSupported("WGL_EXT_create_context_es2_profile");
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_create_context_robustness =
_glfwPlatformExtensionSupported("WGL_ARB_create_context_robustness");
2015-11-09 15:51:27 +00:00
_glfw.wgl.EXT_swap_control =
_glfwPlatformExtensionSupported("WGL_EXT_swap_control");
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_pixel_format =
_glfwPlatformExtensionSupported("WGL_ARB_pixel_format");
2015-11-09 15:51:27 +00:00
_glfw.wgl.ARB_context_flush_control =
_glfwPlatformExtensionSupported("WGL_ARB_context_flush_control");
2015-11-09 15:51:27 +00:00
_glfw.wgl.extensionsLoaded = GLFW_TRUE;
}
// Returns the specified attribute of the specified pixel format
//
static int getPixelFormatAttrib(_GLFWwindow* window, int pixelFormat, int attrib)
{
int value = 0;
2015-11-09 15:51:27 +00:00
assert(_glfw.wgl.ARB_pixel_format);
2015-04-07 00:34:08 +00:00
if (!_glfw.wgl.GetPixelFormatAttribivARB(window->context.wgl.dc,
2015-11-09 15:51:27 +00:00
pixelFormat,
0, 1, &attrib, &value))
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"WGL: Failed to retrieve pixel format attribute %i",
attrib);
return 0;
}
return value;
}
// Return a list of available and usable framebuffer configs
//
2015-08-23 17:30:04 +00:00
static GLFWbool choosePixelFormat(_GLFWwindow* window,
const _GLFWfbconfig* desired,
int* result)
{
_GLFWfbconfig* usableConfigs;
const _GLFWfbconfig* closest;
int i, nativeCount, usableCount;
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_pixel_format)
{
nativeCount = getPixelFormatAttrib(window,
1,
WGL_NUMBER_PIXEL_FORMATS_ARB);
}
else
{
nativeCount = DescribePixelFormat(window->context.wgl.dc,
1,
sizeof(PIXELFORMATDESCRIPTOR),
NULL);
}
usableConfigs = calloc(nativeCount, sizeof(_GLFWfbconfig));
usableCount = 0;
for (i = 0; i < nativeCount; i++)
{
const int n = i + 1;
_GLFWfbconfig* u = usableConfigs + usableCount;
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_pixel_format)
{
2015-04-07 00:51:45 +00:00
// Get pixel format attributes through "modern" extension
if (!getPixelFormatAttrib(window, n, WGL_SUPPORT_OPENGL_ARB) ||
2014-04-24 17:21:10 +00:00
!getPixelFormatAttrib(window, n, WGL_DRAW_TO_WINDOW_ARB))
{
continue;
}
if (getPixelFormatAttrib(window, n, WGL_PIXEL_TYPE_ARB) !=
WGL_TYPE_RGBA_ARB)
{
continue;
}
if (getPixelFormatAttrib(window, n, WGL_ACCELERATION_ARB) ==
WGL_NO_ACCELERATION_ARB)
{
continue;
}
u->redBits = getPixelFormatAttrib(window, n, WGL_RED_BITS_ARB);
u->greenBits = getPixelFormatAttrib(window, n, WGL_GREEN_BITS_ARB);
u->blueBits = getPixelFormatAttrib(window, n, WGL_BLUE_BITS_ARB);
u->alphaBits = getPixelFormatAttrib(window, n, WGL_ALPHA_BITS_ARB);
u->depthBits = getPixelFormatAttrib(window, n, WGL_DEPTH_BITS_ARB);
u->stencilBits = getPixelFormatAttrib(window, n, WGL_STENCIL_BITS_ARB);
u->accumRedBits = getPixelFormatAttrib(window, n, WGL_ACCUM_RED_BITS_ARB);
u->accumGreenBits = getPixelFormatAttrib(window, n, WGL_ACCUM_GREEN_BITS_ARB);
u->accumBlueBits = getPixelFormatAttrib(window, n, WGL_ACCUM_BLUE_BITS_ARB);
u->accumAlphaBits = getPixelFormatAttrib(window, n, WGL_ACCUM_ALPHA_BITS_ARB);
u->auxBuffers = getPixelFormatAttrib(window, n, WGL_AUX_BUFFERS_ARB);
2014-04-24 17:21:10 +00:00
if (getPixelFormatAttrib(window, n, WGL_STEREO_ARB))
2015-08-23 17:30:04 +00:00
u->stereo = GLFW_TRUE;
2014-04-24 17:21:10 +00:00
if (getPixelFormatAttrib(window, n, WGL_DOUBLE_BUFFER_ARB))
2015-08-23 17:30:04 +00:00
u->doublebuffer = GLFW_TRUE;
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_multisample)
u->samples = getPixelFormatAttrib(window, n, WGL_SAMPLES_ARB);
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_framebuffer_sRGB ||
_glfw.wgl.EXT_framebuffer_sRGB)
2014-04-24 17:21:10 +00:00
{
if (getPixelFormatAttrib(window, n, WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB))
2015-08-23 17:30:04 +00:00
u->sRGB = GLFW_TRUE;
2014-04-24 17:21:10 +00:00
}
}
else
{
PIXELFORMATDESCRIPTOR pfd;
2015-04-07 00:51:45 +00:00
// Get pixel format attributes through legacy PFDs
if (!DescribePixelFormat(window->context.wgl.dc,
n,
sizeof(PIXELFORMATDESCRIPTOR),
&pfd))
{
continue;
}
if (!(pfd.dwFlags & PFD_DRAW_TO_WINDOW) ||
2014-04-24 17:21:10 +00:00
!(pfd.dwFlags & PFD_SUPPORT_OPENGL))
{
continue;
}
if (!(pfd.dwFlags & PFD_GENERIC_ACCELERATED) &&
(pfd.dwFlags & PFD_GENERIC_FORMAT))
{
continue;
}
if (pfd.iPixelType != PFD_TYPE_RGBA)
continue;
u->redBits = pfd.cRedBits;
u->greenBits = pfd.cGreenBits;
u->blueBits = pfd.cBlueBits;
u->alphaBits = pfd.cAlphaBits;
u->depthBits = pfd.cDepthBits;
u->stencilBits = pfd.cStencilBits;
u->accumRedBits = pfd.cAccumRedBits;
u->accumGreenBits = pfd.cAccumGreenBits;
u->accumBlueBits = pfd.cAccumBlueBits;
u->accumAlphaBits = pfd.cAccumAlphaBits;
u->auxBuffers = pfd.cAuxBuffers;
2014-04-24 17:21:10 +00:00
if (pfd.dwFlags & PFD_STEREO)
2015-08-23 17:30:04 +00:00
u->stereo = GLFW_TRUE;
2014-04-24 17:21:10 +00:00
if (pfd.dwFlags & PFD_DOUBLEBUFFER)
2015-08-23 17:30:04 +00:00
u->doublebuffer = GLFW_TRUE;
}
u->wgl = n;
usableCount++;
}
2013-12-04 04:35:36 +00:00
if (!usableCount)
{
_glfwInputError(GLFW_API_UNAVAILABLE,
"WGL: The driver does not appear to support OpenGL");
free(usableConfigs);
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
2013-12-04 04:35:36 +00:00
}
closest = _glfwChooseFBConfig(desired, usableConfigs, usableCount);
if (!closest)
{
_glfwInputError(GLFW_FORMAT_UNAVAILABLE,
2013-12-04 04:35:36 +00:00
"WGL: Failed to find a suitable pixel format");
free(usableConfigs);
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
*result = closest->wgl;
free(usableConfigs);
2015-08-23 17:30:04 +00:00
return GLFW_TRUE;
}
// Returns whether desktop compositing is enabled
//
static GLFWbool isCompositionEnabled(void)
{
BOOL enabled;
if (!_glfw_DwmIsCompositionEnabled)
return FALSE;
if (_glfw_DwmIsCompositionEnabled(&enabled) != S_OK)
return FALSE;
return enabled;
}
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
// Initialize WGL
2013-02-04 12:22:10 +00:00
//
2015-12-10 16:10:05 +00:00
GLFWbool _glfwInitWGL(void)
{
2015-11-09 15:51:27 +00:00
_glfw.wgl.instance = LoadLibraryA("opengl32.dll");
if (!_glfw.wgl.instance)
{
_glfwInputError(GLFW_PLATFORM_ERROR, "WGL: Failed to load opengl32.dll");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
2015-11-09 15:51:27 +00:00
_glfw.wgl.CreateContext = (WGLCREATECONTEXT_T)
GetProcAddress(_glfw.wgl.instance, "wglCreateContext");
_glfw.wgl.DeleteContext = (WGLDELETECONTEXT_T)
GetProcAddress(_glfw.wgl.instance, "wglDeleteContext");
_glfw.wgl.GetProcAddress = (WGLGETPROCADDRESS_T)
GetProcAddress(_glfw.wgl.instance, "wglGetProcAddress");
_glfw.wgl.MakeCurrent = (WGLMAKECURRENT_T)
GetProcAddress(_glfw.wgl.instance, "wglMakeCurrent");
_glfw.wgl.ShareLists = (WGLSHARELISTS_T)
GetProcAddress(_glfw.wgl.instance, "wglShareLists");
2015-08-23 17:30:04 +00:00
return GLFW_TRUE;
}
// Terminate WGL
2013-02-04 12:22:10 +00:00
//
void _glfwTerminateWGL(void)
{
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.instance)
FreeLibrary(_glfw.wgl.instance);
}
#define setWGLattrib(attribName, attribValue) \
{ \
attribs[index++] = attribName; \
attribs[index++] = attribValue; \
2013-07-15 16:37:02 +00:00
assert((size_t) index < sizeof(attribs) / sizeof(attribs[0])); \
}
// Create the OpenGL or OpenGL ES context
2013-02-04 12:22:10 +00:00
//
2015-12-10 16:10:05 +00:00
GLFWbool _glfwCreateContextWGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig)
{
int attribs[40];
2013-06-12 21:08:01 +00:00
int pixelFormat = 0;
PIXELFORMATDESCRIPTOR pfd;
HGLRC share = NULL;
if (ctxconfig->api == GLFW_NO_API)
return GLFW_TRUE;
if (ctxconfig->share)
share = ctxconfig->share->context.wgl.handle;
window->context.wgl.dc = GetDC(window->win32.handle);
if (!window->context.wgl.dc)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"WGL: Failed to retrieve DC for window");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
if (!choosePixelFormat(window, fbconfig, &pixelFormat))
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
if (!DescribePixelFormat(window->context.wgl.dc,
pixelFormat, sizeof(pfd), &pfd))
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"WGL: Failed to retrieve PFD for selected pixel format");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
if (!SetPixelFormat(window->context.wgl.dc, pixelFormat, &pfd))
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"WGL: Failed to set selected pixel format");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_create_context)
{
2015-04-10 11:18:26 +00:00
int index = 0, mask = 0, flags = 0;
if (ctxconfig->api == GLFW_OPENGL_API)
{
if (ctxconfig->forward)
flags |= WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
2015-04-10 11:18:26 +00:00
if (ctxconfig->profile == GLFW_OPENGL_CORE_PROFILE)
mask |= WGL_CONTEXT_CORE_PROFILE_BIT_ARB;
else if (ctxconfig->profile == GLFW_OPENGL_COMPAT_PROFILE)
mask |= WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB;
}
2012-12-13 21:43:23 +00:00
else
mask |= WGL_CONTEXT_ES2_PROFILE_BIT_EXT;
if (ctxconfig->debug)
flags |= WGL_CONTEXT_DEBUG_BIT_ARB;
if (ctxconfig->noerror)
flags |= GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR;
if (ctxconfig->robustness)
{
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_create_context_robustness)
{
if (ctxconfig->robustness == GLFW_NO_RESET_NOTIFICATION)
2015-04-10 11:18:26 +00:00
{
setWGLattrib(WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB,
WGL_NO_RESET_NOTIFICATION_ARB);
}
else if (ctxconfig->robustness == GLFW_LOSE_CONTEXT_ON_RESET)
2015-04-10 11:18:26 +00:00
{
setWGLattrib(WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB,
WGL_LOSE_CONTEXT_ON_RESET_ARB);
}
2012-12-13 21:43:23 +00:00
flags |= WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB;
}
}
if (ctxconfig->release)
{
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_context_flush_control)
{
if (ctxconfig->release == GLFW_RELEASE_BEHAVIOR_NONE)
{
setWGLattrib(WGL_CONTEXT_RELEASE_BEHAVIOR_ARB,
WGL_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB);
}
else if (ctxconfig->release == GLFW_RELEASE_BEHAVIOR_FLUSH)
{
setWGLattrib(WGL_CONTEXT_RELEASE_BEHAVIOR_ARB,
WGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB);
}
}
}
2015-04-07 00:51:45 +00:00
// NOTE: Only request an explicitly versioned context when necessary, as
// explicitly requesting version 1.0 does not always return the
// highest version supported by the driver
if (ctxconfig->major != 1 || ctxconfig->minor != 0)
{
setWGLattrib(WGL_CONTEXT_MAJOR_VERSION_ARB, ctxconfig->major);
setWGLattrib(WGL_CONTEXT_MINOR_VERSION_ARB, ctxconfig->minor);
2012-12-13 21:43:23 +00:00
}
2012-12-13 21:43:23 +00:00
if (flags)
setWGLattrib(WGL_CONTEXT_FLAGS_ARB, flags);
2012-12-13 21:43:23 +00:00
if (mask)
setWGLattrib(WGL_CONTEXT_PROFILE_MASK_ARB, mask);
2012-12-13 21:43:23 +00:00
setWGLattrib(0, 0);
window->context.wgl.handle =
_glfw.wgl.CreateContextAttribsARB(window->context.wgl.dc,
share, attribs);
if (!window->context.wgl.handle)
{
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
"WGL: Failed to create OpenGL context");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
}
else
{
2015-12-06 15:13:42 +00:00
window->context.wgl.handle = wglCreateContext(window->context.wgl.dc);
if (!window->context.wgl.handle)
{
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
"WGL: Failed to create OpenGL context");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
if (share)
{
2015-12-06 15:13:42 +00:00
if (!wglShareLists(share, window->context.wgl.handle))
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"WGL: Failed to enable sharing with specified OpenGL context");
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
}
}
}
2015-08-23 17:30:04 +00:00
return GLFW_TRUE;
}
2012-12-13 21:43:23 +00:00
#undef setWGLattrib
// Destroy the OpenGL context
2013-02-04 12:22:10 +00:00
//
void _glfwDestroyContextWGL(_GLFWwindow* window)
{
if (window->context.wgl.handle)
{
2015-12-06 15:13:42 +00:00
wglDeleteContext(window->context.wgl.handle);
window->context.wgl.handle = NULL;
}
}
2012-12-13 21:43:23 +00:00
// Analyzes the specified context for possible recreation
2013-02-04 12:22:10 +00:00
//
int _glfwAnalyzeContextWGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig)
2012-12-13 21:43:23 +00:00
{
2015-08-23 17:30:04 +00:00
GLFWbool required = GLFW_FALSE;
2012-12-13 21:43:23 +00:00
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.extensionsLoaded)
return _GLFW_RECREATION_NOT_NEEDED;
_glfwPlatformMakeContextCurrent(window);
loadExtensions();
if (ctxconfig->api == GLFW_OPENGL_API)
2012-12-13 21:43:23 +00:00
{
if (ctxconfig->forward)
2012-12-13 21:43:23 +00:00
{
2015-11-09 15:51:27 +00:00
if (!_glfw.wgl.ARB_create_context)
2012-12-13 21:43:23 +00:00
{
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
"WGL: A forward compatible OpenGL context requested but WGL_ARB_create_context is unavailable");
2012-12-13 21:43:23 +00:00
return _GLFW_RECREATION_IMPOSSIBLE;
}
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
2012-12-13 21:43:23 +00:00
}
if (ctxconfig->profile)
2012-12-13 21:43:23 +00:00
{
2015-11-09 15:51:27 +00:00
if (!_glfw.wgl.ARB_create_context_profile)
2012-12-13 21:43:23 +00:00
{
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
"WGL: OpenGL profile requested but WGL_ARB_create_context_profile is unavailable");
2012-12-13 21:43:23 +00:00
return _GLFW_RECREATION_IMPOSSIBLE;
}
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
2012-12-13 21:43:23 +00:00
}
if (ctxconfig->release)
{
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_context_flush_control)
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
}
2012-12-13 21:43:23 +00:00
}
else
{
2015-11-09 15:51:27 +00:00
if (!_glfw.wgl.ARB_create_context ||
!_glfw.wgl.ARB_create_context_profile ||
!_glfw.wgl.EXT_create_context_es2_profile)
2012-12-13 21:43:23 +00:00
{
2013-08-21 09:56:48 +00:00
_glfwInputError(GLFW_API_UNAVAILABLE,
"WGL: OpenGL ES requested but WGL_ARB_create_context_es2_profile is unavailable");
2012-12-13 21:43:23 +00:00
return _GLFW_RECREATION_IMPOSSIBLE;
}
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
2012-12-13 21:43:23 +00:00
}
if (ctxconfig->major != 1 || ctxconfig->minor != 0)
2012-12-13 21:43:23 +00:00
{
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_create_context)
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
2012-12-13 21:43:23 +00:00
}
if (ctxconfig->debug)
2012-12-13 21:43:23 +00:00
{
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_create_context)
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
2012-12-13 21:43:23 +00:00
}
if (fbconfig->samples > 0)
{
2015-04-07 00:51:45 +00:00
// MSAA is not a hard constraint, so do nothing if it's not supported
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.ARB_multisample && _glfw.wgl.ARB_pixel_format)
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
2012-12-13 21:43:23 +00:00
}
if (fbconfig->sRGB)
{
2015-04-07 00:51:45 +00:00
// sRGB is not a hard constraint, so do nothing if it's not supported
2015-11-09 15:51:27 +00:00
if ((_glfw.wgl.ARB_framebuffer_sRGB ||
_glfw.wgl.EXT_framebuffer_sRGB) &&
_glfw.wgl.ARB_pixel_format)
{
2015-08-23 17:30:04 +00:00
required = GLFW_TRUE;
}
}
2012-12-13 21:43:23 +00:00
if (required)
return _GLFW_RECREATION_REQUIRED;
return _GLFW_RECREATION_NOT_NEEDED;
}
2010-09-10 20:03:36 +00:00
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 15:34:51 +00:00
void _glfwPlatformMakeContextCurrent(_GLFWwindow* window)
{
if (window)
2015-12-06 15:13:42 +00:00
wglMakeCurrent(window->context.wgl.dc, window->context.wgl.handle);
else
2015-12-06 15:13:42 +00:00
wglMakeCurrent(NULL, NULL);
_glfwPlatformSetCurrentContext(window);
}
void _glfwPlatformSwapBuffers(_GLFWwindow* window)
{
// HACK: Use DwmFlush when desktop composition is enabled
if (isCompositionEnabled() && !window->monitor)
{
int count = abs(window->context.wgl.interval);
while (count--)
_glfw_DwmFlush();
}
SwapBuffers(window->context.wgl.dc);
}
void _glfwPlatformSwapInterval(int interval)
{
_GLFWwindow* window = _glfwPlatformGetCurrentContext();
window->context.wgl.interval = interval;
// HACK: Disable WGL swap interval when desktop composition is enabled to
// avoid interfering with DWM vsync
2015-12-10 11:16:13 +00:00
if (isCompositionEnabled() && !window->monitor)
interval = 0;
2013-03-11 19:54:32 +00:00
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.EXT_swap_control)
_glfw.wgl.SwapIntervalEXT(interval);
}
2010-09-10 20:03:36 +00:00
int _glfwPlatformExtensionSupported(const char* extension)
2010-09-07 15:34:51 +00:00
{
2015-07-28 12:12:16 +00:00
const char* extensions;
2010-09-07 15:34:51 +00:00
_GLFWwindow* window = _glfwPlatformGetCurrentContext();
2010-09-12 14:26:00 +00:00
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.GetExtensionsStringEXT)
2010-09-07 15:34:51 +00:00
{
2015-11-09 15:51:27 +00:00
extensions = _glfw.wgl.GetExtensionsStringEXT();
2015-07-28 12:12:16 +00:00
if (extensions)
2010-09-07 15:34:51 +00:00
{
2010-09-10 20:03:36 +00:00
if (_glfwStringInExtensionString(extension, extensions))
2015-08-23 17:30:04 +00:00
return GLFW_TRUE;
2010-09-07 15:34:51 +00:00
}
}
2015-11-09 15:51:27 +00:00
if (_glfw.wgl.GetExtensionsStringARB)
2010-09-07 15:34:51 +00:00
{
extensions = _glfw.wgl.GetExtensionsStringARB(window->context.wgl.dc);
2015-07-28 12:12:16 +00:00
if (extensions)
2010-09-07 15:34:51 +00:00
{
2010-09-10 20:03:36 +00:00
if (_glfwStringInExtensionString(extension, extensions))
2015-08-23 17:30:04 +00:00
return GLFW_TRUE;
2010-09-07 15:34:51 +00:00
}
}
2015-08-23 17:30:04 +00:00
return GLFW_FALSE;
2010-09-07 15:34:51 +00:00
}
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
2010-09-07 15:34:51 +00:00
{
2015-12-06 15:13:42 +00:00
const GLFWglproc proc = (GLFWglproc) wglGetProcAddress(procname);
if (proc)
return proc;
2015-11-09 15:51:27 +00:00
return (GLFWglproc) GetProcAddress(_glfw.wgl.instance, procname);
2010-09-07 15:34:51 +00:00
}
//////////////////////////////////////////////////////////////////////////
////// GLFW native API //////
//////////////////////////////////////////////////////////////////////////
GLFWAPI HGLRC glfwGetWGLContext(GLFWwindow* handle)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
if (window->context.api == GLFW_NO_API)
{
_glfwInputError(GLFW_NO_WINDOW_CONTEXT, NULL);
return NULL;
}
return window->context.wgl.handle;
}