2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 GLX - 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-06-03 14:33:48 +00:00
|
|
|
#include <string.h>
|
2012-04-23 10:48:57 +00:00
|
|
|
#include <stdlib.h>
|
2013-01-15 19:00:27 +00:00
|
|
|
#include <assert.h>
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-01 21:00:07 +00:00
|
|
|
// This is the only glXGetProcAddress variant not declared by glxext.h
|
2010-09-08 13:58:43 +00:00
|
|
|
void (*glXGetProcAddressEXT(const GLubyte* procName))();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2012-12-30 17:13:04 +00:00
|
|
|
#ifndef GLXBadProfileARB
|
|
|
|
#define GLXBadProfileARB 13
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-05-13 13:49:59 +00:00
|
|
|
// Returns the specified attribute of the specified GLXFBConfig
|
|
|
|
//
|
|
|
|
static int getFBConfigAttrib(GLXFBConfig fbconfig, int attrib)
|
|
|
|
{
|
|
|
|
int value;
|
2014-03-06 15:45:40 +00:00
|
|
|
glXGetFBConfigAttrib(_glfw.x11.display, fbconfig, attrib, &value);
|
2013-05-13 13:49:59 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a list of available and usable framebuffer configs
|
|
|
|
//
|
|
|
|
static GLboolean chooseFBConfig(const _GLFWfbconfig* desired, GLXFBConfig* result)
|
|
|
|
{
|
|
|
|
GLXFBConfig* nativeConfigs;
|
|
|
|
_GLFWfbconfig* usableConfigs;
|
|
|
|
const _GLFWfbconfig* closest;
|
|
|
|
int i, nativeCount, usableCount;
|
|
|
|
const char* vendor;
|
|
|
|
GLboolean trustWindowBit = GL_TRUE;
|
|
|
|
|
|
|
|
vendor = glXGetClientString(_glfw.x11.display, GLX_VENDOR);
|
|
|
|
if (strcmp(vendor, "Chromium") == 0)
|
|
|
|
{
|
|
|
|
// HACK: This is a (hopefully temporary) workaround for Chromium
|
2013-11-10 12:56:27 +00:00
|
|
|
// (VirtualBox GL) not setting the window bit on any GLXFBConfigs
|
2013-05-13 13:49:59 +00:00
|
|
|
trustWindowBit = GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-03-06 15:45:40 +00:00
|
|
|
nativeConfigs = glXGetFBConfigs(_glfw.x11.display, _glfw.x11.screen,
|
|
|
|
&nativeCount);
|
2013-05-13 13:49:59 +00:00
|
|
|
if (!nativeCount)
|
|
|
|
{
|
2014-03-06 15:45:40 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE, "GLX: No GLXFBConfigs returned");
|
2013-05-13 13:49:59 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2013-07-04 12:54:07 +00:00
|
|
|
usableConfigs = calloc(nativeCount, sizeof(_GLFWfbconfig));
|
2013-05-13 13:49:59 +00:00
|
|
|
usableCount = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < nativeCount; i++)
|
|
|
|
{
|
|
|
|
const GLXFBConfig n = nativeConfigs[i];
|
|
|
|
_GLFWfbconfig* u = usableConfigs + usableCount;
|
|
|
|
|
2014-04-24 17:21:10 +00:00
|
|
|
if (!getFBConfigAttrib(n, GLX_VISUAL_ID))
|
2013-05-13 13:49:59 +00:00
|
|
|
{
|
2014-04-24 17:21:10 +00:00
|
|
|
// Only consider GLXFBConfigs with associated visuals
|
2013-05-13 13:49:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(getFBConfigAttrib(n, GLX_RENDER_TYPE) & GLX_RGBA_BIT))
|
|
|
|
{
|
|
|
|
// Only consider RGBA GLXFBConfigs
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(getFBConfigAttrib(n, GLX_DRAWABLE_TYPE) & GLX_WINDOW_BIT))
|
|
|
|
{
|
|
|
|
if (trustWindowBit)
|
|
|
|
{
|
|
|
|
// Only consider window GLXFBConfigs
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u->redBits = getFBConfigAttrib(n, GLX_RED_SIZE);
|
|
|
|
u->greenBits = getFBConfigAttrib(n, GLX_GREEN_SIZE);
|
|
|
|
u->blueBits = getFBConfigAttrib(n, GLX_BLUE_SIZE);
|
|
|
|
|
|
|
|
u->alphaBits = getFBConfigAttrib(n, GLX_ALPHA_SIZE);
|
|
|
|
u->depthBits = getFBConfigAttrib(n, GLX_DEPTH_SIZE);
|
|
|
|
u->stencilBits = getFBConfigAttrib(n, GLX_STENCIL_SIZE);
|
|
|
|
|
|
|
|
u->accumRedBits = getFBConfigAttrib(n, GLX_ACCUM_RED_SIZE);
|
|
|
|
u->accumGreenBits = getFBConfigAttrib(n, GLX_ACCUM_GREEN_SIZE);
|
|
|
|
u->accumBlueBits = getFBConfigAttrib(n, GLX_ACCUM_BLUE_SIZE);
|
|
|
|
u->accumAlphaBits = getFBConfigAttrib(n, GLX_ACCUM_ALPHA_SIZE);
|
|
|
|
|
|
|
|
u->auxBuffers = getFBConfigAttrib(n, GLX_AUX_BUFFERS);
|
2014-04-24 17:21:10 +00:00
|
|
|
|
|
|
|
if (getFBConfigAttrib(n, GLX_STEREO))
|
|
|
|
u->stereo = GL_TRUE;
|
|
|
|
if (getFBConfigAttrib(n, GLX_DOUBLEBUFFER))
|
|
|
|
u->doublebuffer = GL_TRUE;
|
2013-05-13 13:49:59 +00:00
|
|
|
|
|
|
|
if (_glfw.glx.ARB_multisample)
|
|
|
|
u->samples = getFBConfigAttrib(n, GLX_SAMPLES);
|
|
|
|
|
|
|
|
if (_glfw.glx.ARB_framebuffer_sRGB)
|
|
|
|
u->sRGB = getFBConfigAttrib(n, GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB);
|
|
|
|
|
|
|
|
u->glx = n;
|
|
|
|
usableCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
closest = _glfwChooseFBConfig(desired, usableConfigs, usableCount);
|
|
|
|
if (closest)
|
|
|
|
*result = closest->glx;
|
|
|
|
|
|
|
|
XFree(nativeConfigs);
|
|
|
|
free(usableConfigs);
|
|
|
|
|
|
|
|
return closest ? GL_TRUE : GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
// Create the OpenGL context using legacy API
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-01-15 19:00:27 +00:00
|
|
|
static GLXContext createLegacyContext(_GLFWwindow* window,
|
|
|
|
GLXFBConfig fbconfig,
|
|
|
|
GLXContext share)
|
|
|
|
{
|
2013-07-05 12:26:02 +00:00
|
|
|
return glXCreateNewContext(_glfw.x11.display,
|
|
|
|
fbconfig,
|
|
|
|
GLX_RGBA_TYPE,
|
|
|
|
share,
|
|
|
|
True);
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Initialize GLX
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-01-15 19:49:29 +00:00
|
|
|
int _glfwInitContextAPI(void)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2014-03-30 12:37:20 +00:00
|
|
|
if (!_glfwInitTLS())
|
|
|
|
return GL_FALSE;
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
#ifdef _GLFW_DLOPEN_LIBGL
|
2014-03-29 22:41:58 +00:00
|
|
|
_glfw.glx.libGL = dlopen("libGL.so.1", RTLD_LAZY | RTLD_GLOBAL);
|
2013-01-15 19:00:27 +00:00
|
|
|
if (!_glfw.glx.libGL)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "GLX: Failed to find libGL");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
2012-06-03 14:31:56 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (!glXQueryExtension(_glfw.x11.display,
|
|
|
|
&_glfw.glx.errorBase,
|
|
|
|
&_glfw.glx.eventBase))
|
2012-06-03 14:31:56 +00:00
|
|
|
{
|
2014-03-30 08:45:33 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE, "GLX: GLX extension not found");
|
2013-01-15 19:00:27 +00:00
|
|
|
return GL_FALSE;
|
2012-06-03 14:31:56 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (!glXQueryVersion(_glfw.x11.display,
|
|
|
|
&_glfw.glx.versionMajor,
|
|
|
|
&_glfw.glx.versionMinor))
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"GLX: Failed to query GLX version");
|
|
|
|
return GL_FALSE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
2013-01-15 19:00:27 +00:00
|
|
|
|
2014-03-30 08:45:33 +00:00
|
|
|
if (_glfw.glx.versionMajor == 1 && _glfw.glx.versionMinor < 3)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"GLX: GLX version 1.3 is required");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_EXT_swap_control"))
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
_glfw.glx.SwapIntervalEXT = (PFNGLXSWAPINTERVALEXTPROC)
|
|
|
|
_glfwPlatformGetProcAddress("glXSwapIntervalEXT");
|
|
|
|
|
|
|
|
if (_glfw.glx.SwapIntervalEXT)
|
|
|
|
_glfw.glx.EXT_swap_control = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_SGI_swap_control"))
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
_glfw.glx.SwapIntervalSGI = (PFNGLXSWAPINTERVALSGIPROC)
|
|
|
|
_glfwPlatformGetProcAddress("glXSwapIntervalSGI");
|
|
|
|
|
|
|
|
if (_glfw.glx.SwapIntervalSGI)
|
|
|
|
_glfw.glx.SGI_swap_control = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_MESA_swap_control"))
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
_glfw.glx.SwapIntervalMESA = (PFNGLXSWAPINTERVALMESAPROC)
|
|
|
|
_glfwPlatformGetProcAddress("glXSwapIntervalMESA");
|
2012-06-03 14:40:54 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfw.glx.SwapIntervalMESA)
|
|
|
|
_glfw.glx.MESA_swap_control = GL_TRUE;
|
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_ARB_multisample"))
|
|
|
|
_glfw.glx.ARB_multisample = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_ARB_framebuffer_sRGB"))
|
|
|
|
_glfw.glx.ARB_framebuffer_sRGB = GL_TRUE;
|
2012-12-02 15:10:00 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_ARB_create_context"))
|
|
|
|
{
|
|
|
|
_glfw.glx.CreateContextAttribsARB = (PFNGLXCREATECONTEXTATTRIBSARBPROC)
|
|
|
|
_glfwPlatformGetProcAddress("glXCreateContextAttribsARB");
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfw.glx.CreateContextAttribsARB)
|
|
|
|
_glfw.glx.ARB_create_context = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_ARB_create_context_robustness"))
|
|
|
|
_glfw.glx.ARB_create_context_robustness = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_ARB_create_context_profile"))
|
|
|
|
_glfw.glx.ARB_create_context_profile = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("GLX_EXT_create_context_es2_profile"))
|
|
|
|
_glfw.glx.EXT_create_context_es2_profile = GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
return GL_TRUE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
// Terminate GLX
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-01-15 19:49:29 +00:00
|
|
|
void _glfwTerminateContextAPI(void)
|
2012-12-30 17:13:04 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
// Unload libGL.so if necessary
|
|
|
|
#ifdef _GLFW_DLOPEN_LIBGL
|
|
|
|
if (_glfw.glx.libGL != NULL)
|
2012-12-30 17:13:04 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
dlclose(_glfw.glx.libGL);
|
|
|
|
_glfw.glx.libGL = NULL;
|
2012-12-30 17:13:04 +00:00
|
|
|
}
|
2013-01-15 19:00:27 +00:00
|
|
|
#endif
|
2013-05-02 14:48:11 +00:00
|
|
|
|
2014-03-30 12:37:20 +00:00
|
|
|
_glfwTerminateTLS();
|
2012-12-30 17:13:04 +00:00
|
|
|
}
|
|
|
|
|
2012-12-13 19:43:15 +00:00
|
|
|
#define setGLXattrib(attribName, attribValue) \
|
2013-01-15 19:00:27 +00:00
|
|
|
{ \
|
2012-04-23 10:48:57 +00:00
|
|
|
attribs[index++] = attribName; \
|
2013-01-15 19:00:27 +00:00
|
|
|
attribs[index++] = attribValue; \
|
2013-07-15 16:37:02 +00:00
|
|
|
assert((size_t) index < sizeof(attribs) / sizeof(attribs[0])); \
|
2013-01-15 19:00:27 +00:00
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-02-04 12:22:10 +00:00
|
|
|
// Prepare for creation of the OpenGL context
|
|
|
|
//
|
2013-01-15 19:00:27 +00:00
|
|
|
int _glfwCreateContext(_GLFWwindow* window,
|
2014-03-06 19:05:32 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2013-01-15 19:00:27 +00:00
|
|
|
const _GLFWfbconfig* fbconfig)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
|
|
|
int attribs[40];
|
2013-05-13 13:49:59 +00:00
|
|
|
GLXFBConfig native;
|
2012-04-23 10:48:57 +00:00
|
|
|
GLXContext share = NULL;
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->share)
|
|
|
|
share = ctxconfig->share->glx.context;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-05-13 13:49:59 +00:00
|
|
|
if (!chooseFBConfig(fbconfig, &native))
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-05-13 13:49:59 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"GLX: Failed to find a suitable GLXFBConfig");
|
|
|
|
return GL_FALSE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve the corresponding visual
|
2014-03-06 15:45:40 +00:00
|
|
|
window->glx.visual = glXGetVisualFromFBConfig(_glfw.x11.display, native);
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->glx.visual == NULL)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"GLX: Failed to retrieve visual for GLXFBConfig");
|
2012-04-23 10:48:57 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->api == GLFW_OPENGL_ES_API)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!_glfw.glx.ARB_create_context ||
|
|
|
|
!_glfw.glx.ARB_create_context_profile ||
|
|
|
|
!_glfw.glx.EXT_create_context_es2_profile)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-08-21 09:56:48 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2012-12-31 20:05:28 +00:00
|
|
|
"GLX: OpenGL ES requested but "
|
|
|
|
"GLX_EXT_create_context_es2_profile is unavailable");
|
2012-12-13 19:43:15 +00:00
|
|
|
return GL_FALSE;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
2012-12-13 19:43:15 +00:00
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->forward)
|
2012-12-13 19:43:15 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!_glfw.glx.ARB_create_context)
|
2012-07-21 23:10:59 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
|
|
|
|
"GLX: Forward compatibility requested but "
|
|
|
|
"GLX_ARB_create_context_profile is unavailable");
|
2012-12-13 19:43:15 +00:00
|
|
|
return GL_FALSE;
|
2012-07-21 23:10:59 +00:00
|
|
|
}
|
2012-12-13 19:43:15 +00:00
|
|
|
}
|
2012-07-21 23:10:59 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->profile)
|
2012-12-13 19:43:15 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!_glfw.glx.ARB_create_context ||
|
|
|
|
!_glfw.glx.ARB_create_context_profile)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
|
|
|
|
"GLX: An OpenGL profile requested but "
|
|
|
|
"GLX_ARB_create_context_profile is unavailable");
|
2012-12-13 19:43:15 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 16:38:21 +00:00
|
|
|
_glfwGrabXErrorHandler();
|
2013-01-21 19:19:20 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.glx.ARB_create_context)
|
2012-12-13 19:43:15 +00:00
|
|
|
{
|
|
|
|
int index = 0, mask = 0, flags = 0, strategy = 0;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->api == GLFW_OPENGL_API)
|
2012-12-13 19:43:15 +00:00
|
|
|
{
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->forward)
|
2012-04-23 10:48:57 +00:00
|
|
|
flags |= GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->debug)
|
2012-04-23 10:48:57 +00:00
|
|
|
flags |= GLX_CONTEXT_DEBUG_BIT_ARB;
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->profile)
|
2012-12-13 19:43:15 +00:00
|
|
|
{
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->profile == GLFW_OPENGL_CORE_PROFILE)
|
2012-12-13 19:43:15 +00:00
|
|
|
mask |= GLX_CONTEXT_CORE_PROFILE_BIT_ARB;
|
2014-03-06 19:05:32 +00:00
|
|
|
else if (ctxconfig->profile == GLFW_OPENGL_COMPAT_PROFILE)
|
2012-12-13 19:43:15 +00:00
|
|
|
mask |= GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB;
|
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
2012-12-13 19:43:15 +00:00
|
|
|
else
|
|
|
|
mask |= GLX_CONTEXT_ES2_PROFILE_BIT_EXT;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->robustness != GLFW_NO_ROBUSTNESS)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.glx.ARB_create_context_robustness)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->robustness == GLFW_NO_RESET_NOTIFICATION)
|
2012-12-13 19:43:15 +00:00
|
|
|
strategy = GLX_NO_RESET_NOTIFICATION_ARB;
|
2014-03-06 19:05:32 +00:00
|
|
|
else if (ctxconfig->robustness == GLFW_LOSE_CONTEXT_ON_RESET)
|
2012-12-13 19:43:15 +00:00
|
|
|
strategy = GLX_LOSE_CONTEXT_ON_RESET_ARB;
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2012-12-13 19:43:15 +00:00
|
|
|
flags |= GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB;
|
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (ctxconfig->major != 1 || ctxconfig->minor != 0)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2012-12-13 19:43:15 +00:00
|
|
|
// NOTE: Only request an explicitly versioned context when
|
2013-11-10 13:03:07 +00:00
|
|
|
// necessary, as explicitly requesting version 1.0 does not
|
|
|
|
// always return the highest available version
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
setGLXattrib(GLX_CONTEXT_MAJOR_VERSION_ARB, ctxconfig->major);
|
|
|
|
setGLXattrib(GLX_CONTEXT_MINOR_VERSION_ARB, ctxconfig->minor);
|
2012-12-13 19:43:15 +00:00
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2012-12-13 19:43:15 +00:00
|
|
|
if (mask)
|
|
|
|
setGLXattrib(GLX_CONTEXT_PROFILE_MASK_ARB, mask);
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2012-12-13 19:43:15 +00:00
|
|
|
if (flags)
|
|
|
|
setGLXattrib(GLX_CONTEXT_FLAGS_ARB, flags);
|
|
|
|
|
|
|
|
if (strategy)
|
|
|
|
setGLXattrib(GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB, strategy);
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2012-12-13 19:43:15 +00:00
|
|
|
setGLXattrib(None, None);
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window->glx.context =
|
|
|
|
_glfw.glx.CreateContextAttribsARB(_glfw.x11.display,
|
2013-05-13 13:49:59 +00:00
|
|
|
native,
|
2013-01-02 00:40:42 +00:00
|
|
|
share,
|
|
|
|
True,
|
|
|
|
attribs);
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->glx.context == NULL)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2012-12-30 17:13:04 +00:00
|
|
|
// HACK: This is a fallback for the broken Mesa implementation of
|
2013-11-10 12:56:27 +00:00
|
|
|
// GLX_ARB_create_context_profile, which fails default 1.0
|
|
|
|
// context creation with a GLXBadProfileARB error in violation
|
|
|
|
// of the extension spec
|
2013-07-10 23:23:26 +00:00
|
|
|
if (_glfw.x11.errorCode == _glfw.glx.errorBase + GLXBadProfileARB &&
|
2014-03-06 19:05:32 +00:00
|
|
|
ctxconfig->api == GLFW_OPENGL_API &&
|
|
|
|
ctxconfig->profile == GLFW_OPENGL_ANY_PROFILE &&
|
|
|
|
ctxconfig->forward == GL_FALSE)
|
2012-12-30 17:13:04 +00:00
|
|
|
{
|
2013-05-13 13:49:59 +00:00
|
|
|
window->glx.context = createLegacyContext(window, native, share);
|
2012-12-30 17:13:04 +00:00
|
|
|
}
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
}
|
2012-12-30 17:13:04 +00:00
|
|
|
else
|
2013-05-13 13:49:59 +00:00
|
|
|
window->glx.context = createLegacyContext(window, native, share);
|
2012-04-23 10:48:57 +00:00
|
|
|
|
2013-07-09 16:38:21 +00:00
|
|
|
_glfwReleaseXErrorHandler();
|
2013-01-21 19:19:20 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->glx.context == NULL)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-07-10 23:23:26 +00:00
|
|
|
_glfwInputXError(GLFW_PLATFORM_ERROR, "GLX: Failed to create context");
|
2012-04-23 10:48:57 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef setGLXattrib
|
|
|
|
|
|
|
|
// Destroy the OpenGL context
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-04-23 10:48:57 +00:00
|
|
|
void _glfwDestroyContext(_GLFWwindow* window)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->glx.visual)
|
2012-04-23 20:31:55 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
XFree(window->glx.visual);
|
|
|
|
window->glx.visual = NULL;
|
2012-04-23 20:31:55 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->glx.context)
|
2012-04-23 10:48:57 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
glXDestroyContext(_glfw.x11.display, window->glx.context);
|
|
|
|
window->glx.context = NULL;
|
2012-04-23 10:48:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-12 12:13:18 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-07-27 14:01:27 +00:00
|
|
|
void _glfwPlatformMakeContextCurrent(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
if (window)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
glXMakeCurrent(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
|
|
|
window->glx.context);
|
2011-07-27 14:01:27 +00:00
|
|
|
}
|
|
|
|
else
|
2013-01-02 00:40:42 +00:00
|
|
|
glXMakeCurrent(_glfw.x11.display, None, NULL);
|
2012-08-12 12:13:18 +00:00
|
|
|
|
2014-03-30 12:37:20 +00:00
|
|
|
_glfwSetCurrentContext(window);
|
2011-07-27 14:01:27 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 16:13:37 +00:00
|
|
|
void _glfwPlatformSwapBuffers(_GLFWwindow* window)
|
2011-03-04 13:25:12 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
glXSwapBuffers(_glfw.x11.display, window->x11.handle);
|
2011-03-04 13:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSwapInterval(int interval)
|
|
|
|
{
|
2013-05-02 14:48:11 +00:00
|
|
|
_GLFWwindow* window = _glfwPlatformGetCurrentContext();
|
2011-03-04 13:25:12 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.glx.EXT_swap_control)
|
2011-03-04 13:25:12 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.glx.SwapIntervalEXT(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
|
|
|
interval);
|
2011-03-04 13:25:12 +00:00
|
|
|
}
|
2013-01-02 00:40:42 +00:00
|
|
|
else if (_glfw.glx.MESA_swap_control)
|
|
|
|
_glfw.glx.SwapIntervalMESA(interval);
|
|
|
|
else if (_glfw.glx.SGI_swap_control)
|
2012-07-15 14:48:39 +00:00
|
|
|
{
|
|
|
|
if (interval > 0)
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.glx.SwapIntervalSGI(interval);
|
2012-07-15 14:48:39 +00:00
|
|
|
}
|
2011-03-04 13:25:12 +00:00
|
|
|
}
|
|
|
|
|
2010-09-08 13:58:43 +00:00
|
|
|
int _glfwPlatformExtensionSupported(const char* extension)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-08 13:58:43 +00:00
|
|
|
const GLubyte* extensions;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Get list of GLX extensions
|
2013-01-02 00:40:42 +00:00
|
|
|
extensions = (const GLubyte*) glXQueryExtensionsString(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen);
|
2010-09-08 13:51:25 +00:00
|
|
|
if (extensions != NULL)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-08 13:51:25 +00:00
|
|
|
if (_glfwStringInExtensionString(extension, extensions))
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-06-04 22:16:40 +00:00
|
|
|
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-06-04 22:16:40 +00:00
|
|
|
return _glfw_glXGetProcAddress((const GLubyte*) procname);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 21:38:14 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI GLXContext glfwGetGLXContext(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-01-15 21:38:14 +00:00
|
|
|
return window->glx.context;
|
|
|
|
}
|
|
|
|
|