2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW - An OpenGL library
|
2012-11-27 11:58:59 +00:00
|
|
|
// Platform: EGL
|
2012-04-25 04:58:27 +00:00
|
|
|
// API version: 3.0
|
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// 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"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2013-01-15 19:00:27 +00:00
|
|
|
#include <assert.h>
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-09-09 17:52:33 +00:00
|
|
|
//========================================================================
|
|
|
|
// Thread local storage attribute macro
|
|
|
|
//========================================================================
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define _GLFW_TLS __declspec(thread)
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define _GLFW_TLS __thread
|
|
|
|
#else
|
|
|
|
#define _GLFW_TLS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// The per-thread current context/window pointer
|
|
|
|
//========================================================================
|
|
|
|
static _GLFW_TLS _GLFWwindow* _glfwCurrentWindow = NULL;
|
|
|
|
|
|
|
|
|
2013-01-16 19:10:17 +00:00
|
|
|
//========================================================================
|
|
|
|
// Return a description of the specified EGL error
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
static const char* getErrorString(EGLint error)
|
|
|
|
{
|
|
|
|
switch (error)
|
|
|
|
{
|
|
|
|
case EGL_SUCCESS:
|
|
|
|
return "Success";
|
|
|
|
case EGL_NOT_INITIALIZED:
|
|
|
|
return "EGL is not or could not be initialized";
|
|
|
|
case EGL_BAD_ACCESS:
|
|
|
|
return "EGL cannot access a requested resource";
|
|
|
|
case EGL_BAD_ALLOC:
|
|
|
|
return "EGL failed to allocate resources for the requested operation";
|
|
|
|
case EGL_BAD_ATTRIBUTE:
|
|
|
|
return "An unrecognized attribute or attribute value was passed "
|
|
|
|
"in the attribute list";
|
|
|
|
case EGL_BAD_CONTEXT:
|
|
|
|
return "An EGLContext argument does not name a valid EGL "
|
|
|
|
"rendering context";
|
|
|
|
case EGL_BAD_CONFIG:
|
|
|
|
return "An EGLConfig argument does not name a valid EGL frame "
|
|
|
|
"buffer configuration";
|
|
|
|
case EGL_BAD_CURRENT_SURFACE:
|
|
|
|
return "The current surface of the calling thread is a window, pixel "
|
|
|
|
"buffer or pixmap that is no longer valid";
|
|
|
|
case EGL_BAD_DISPLAY:
|
|
|
|
return "An EGLDisplay argument does not name a valid EGL display "
|
|
|
|
"connection";
|
|
|
|
case EGL_BAD_SURFACE:
|
|
|
|
return "An EGLSurface argument does not name a valid surface "
|
|
|
|
"configured for GL rendering";
|
|
|
|
case EGL_BAD_MATCH:
|
|
|
|
return "Arguments are inconsistent";
|
|
|
|
case EGL_BAD_PARAMETER:
|
|
|
|
return "One or more argument values are invalid";
|
|
|
|
case EGL_BAD_NATIVE_PIXMAP:
|
|
|
|
return "A NativePixmapType argument does not refer to a valid "
|
|
|
|
"native pixmap";
|
|
|
|
case EGL_BAD_NATIVE_WINDOW:
|
|
|
|
return "A NativeWindowType argument does not refer to a valid "
|
|
|
|
"native window";
|
|
|
|
case EGL_CONTEXT_LOST:
|
|
|
|
return "The application must destroy all contexts and reinitialise";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "UNKNOWN EGL ERROR";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2012-04-25 04:58:27 +00:00
|
|
|
|
|
|
|
//========================================================================
|
2013-01-15 19:00:27 +00:00
|
|
|
// Initialize EGL
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2013-01-15 19:49:29 +00:00
|
|
|
int _glfwInitContextAPI(void)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2013-01-15 19:00:27 +00:00
|
|
|
_glfw.egl.display = eglGetDisplay(_GLFW_EGL_NATIVE_DISPLAY);
|
|
|
|
if (_glfw.egl.display == EGL_NO_DISPLAY)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2013-01-16 19:10:17 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"EGL: Failed to get EGL display: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2013-01-15 19:00:27 +00:00
|
|
|
return GL_FALSE;
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (!eglInitialize(_glfw.egl.display,
|
|
|
|
&_glfw.egl.versionMajor,
|
|
|
|
&_glfw.egl.versionMinor))
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2013-01-16 19:10:17 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"EGL: Failed to initialize EGL: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2013-01-15 19:00:27 +00:00
|
|
|
return GL_FALSE;
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
if (_glfwPlatformExtensionSupported("EGL_KHR_create_context"))
|
|
|
|
_glfw.egl.KHR_create_context = GL_TRUE;
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
2012-12-02 15:29:56 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// Terminate EGL
|
|
|
|
//========================================================================
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-15 19:49:29 +00:00
|
|
|
void _glfwTerminateContextAPI(void)
|
2013-01-15 19:00:27 +00:00
|
|
|
{
|
|
|
|
eglTerminate(_glfw.egl.display);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
2013-01-15 19:00:27 +00:00
|
|
|
// Prepare for creation of the OpenGL context
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2012-12-16 16:04:43 +00:00
|
|
|
#define setEGLattrib(attribName, attribValue) \
|
2012-07-22 15:06:37 +00:00
|
|
|
{ \
|
2012-04-25 04:58:27 +00:00
|
|
|
attribs[index++] = attribName; \
|
2012-07-22 15:06:37 +00:00
|
|
|
attribs[index++] = attribValue; \
|
2013-01-15 19:00:27 +00:00
|
|
|
assert(index < sizeof(attribs) / sizeof(attribs[0])); \
|
2012-07-22 15:06:37 +00:00
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
int _glfwCreateContext(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2012-09-09 17:17:46 +00:00
|
|
|
int attribs[40];
|
2012-12-16 16:04:43 +00:00
|
|
|
EGLint count;
|
2012-07-20 16:04:43 +00:00
|
|
|
EGLConfig config;
|
2012-04-25 04:58:27 +00:00
|
|
|
EGLContext share = NULL;
|
|
|
|
|
|
|
|
if (wndconfig->share)
|
2013-01-02 00:40:42 +00:00
|
|
|
share = wndconfig->share->egl.context;
|
2012-04-25 04:58:27 +00:00
|
|
|
|
|
|
|
// Retrieve the previously selected EGLConfig
|
|
|
|
{
|
2012-12-16 16:04:43 +00:00
|
|
|
int index = 0;
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-15 19:00:27 +00:00
|
|
|
setEGLattrib(EGL_COLOR_BUFFER_TYPE, EGL_RGB_BUFFER);
|
|
|
|
|
|
|
|
if (fbconfig->redBits)
|
|
|
|
setEGLattrib(EGL_RED_SIZE, fbconfig->redBits);
|
|
|
|
if (fbconfig->greenBits)
|
|
|
|
setEGLattrib(EGL_GREEN_SIZE, fbconfig->greenBits);
|
|
|
|
if (fbconfig->blueBits)
|
|
|
|
setEGLattrib(EGL_BLUE_SIZE, fbconfig->blueBits);
|
|
|
|
if (fbconfig->alphaBits)
|
2013-01-16 18:49:15 +00:00
|
|
|
setEGLattrib(EGL_ALPHA_SIZE, fbconfig->alphaBits);
|
2013-01-15 19:00:27 +00:00
|
|
|
|
|
|
|
if (fbconfig->depthBits)
|
|
|
|
setEGLattrib(EGL_DEPTH_SIZE, fbconfig->depthBits);
|
|
|
|
if (fbconfig->stencilBits)
|
|
|
|
setEGLattrib(EGL_STENCIL_SIZE, fbconfig->stencilBits);
|
|
|
|
|
|
|
|
if (fbconfig->samples)
|
|
|
|
{
|
|
|
|
setEGLattrib(EGL_SAMPLE_BUFFERS, 1);
|
|
|
|
setEGLattrib(EGL_SAMPLES, fbconfig->samples);
|
|
|
|
}
|
|
|
|
|
2012-12-16 16:04:43 +00:00
|
|
|
setEGLattrib(EGL_NONE, EGL_NONE);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
eglChooseConfig(_glfw.egl.display, attribs, &config, 1, &count);
|
2012-07-20 00:02:20 +00:00
|
|
|
if (!count)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2013-01-16 19:10:17 +00:00
|
|
|
"EGL: Failed to find a suitable EGLConfig: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2012-04-25 04:58:27 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-27 14:02:26 +00:00
|
|
|
#if defined(_GLFW_X11)
|
2012-12-16 16:04:43 +00:00
|
|
|
// Retrieve the visual corresponding to the chosen EGL config
|
2012-04-25 06:35:47 +00:00
|
|
|
{
|
2012-09-09 17:17:46 +00:00
|
|
|
int mask;
|
|
|
|
EGLint redBits, greenBits, blueBits, alphaBits, visualID = 0;
|
|
|
|
XVisualInfo info;
|
2012-04-25 06:35:47 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
eglGetConfigAttrib(_glfw.egl.display, config,
|
2012-09-09 17:17:46 +00:00
|
|
|
EGL_NATIVE_VISUAL_ID, &visualID);
|
2012-04-25 06:35:47 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
info.screen = _glfw.x11.screen;
|
2012-09-09 17:17:46 +00:00
|
|
|
mask = VisualScreenMask;
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-09-09 17:17:46 +00:00
|
|
|
if (visualID)
|
|
|
|
{
|
|
|
|
// The X window visual must match the EGL config
|
|
|
|
info.visualid = visualID;
|
|
|
|
mask |= VisualIDMask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// some EGL drivers don't implement the EGL_NATIVE_VISUAL_ID
|
|
|
|
// attribute, so attempt to find the closest match.
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
eglGetConfigAttrib(_glfw.egl.display, config,
|
2012-09-09 17:17:46 +00:00
|
|
|
EGL_RED_SIZE, &redBits);
|
2013-01-02 00:40:42 +00:00
|
|
|
eglGetConfigAttrib(_glfw.egl.display, config,
|
2012-09-09 17:17:46 +00:00
|
|
|
EGL_GREEN_SIZE, &greenBits);
|
2013-01-02 00:40:42 +00:00
|
|
|
eglGetConfigAttrib(_glfw.egl.display, config,
|
2012-09-09 17:17:46 +00:00
|
|
|
EGL_BLUE_SIZE, &blueBits);
|
2013-01-02 00:40:42 +00:00
|
|
|
eglGetConfigAttrib(_glfw.egl.display, config,
|
2012-09-09 17:17:46 +00:00
|
|
|
EGL_ALPHA_SIZE, &alphaBits);
|
|
|
|
|
|
|
|
info.depth = redBits + greenBits + blueBits + alphaBits;
|
|
|
|
mask |= VisualDepthMask;
|
|
|
|
}
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window->egl.visual = XGetVisualInfo(_glfw.x11.display,
|
2012-09-09 17:17:46 +00:00
|
|
|
mask, &info, &count);
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.visual == NULL)
|
2012-09-09 17:17:46 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"EGL: Failed to retrieve visual for EGLConfig");
|
2012-09-09 17:17:46 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
2013-01-04 02:54:52 +00:00
|
|
|
#endif // _GLFW_X11
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-07-21 23:10:59 +00:00
|
|
|
if (wndconfig->clientAPI == GLFW_OPENGL_ES_API)
|
2012-07-22 15:06:37 +00:00
|
|
|
{
|
|
|
|
if (!eglBindAPI(EGL_OPENGL_ES_API))
|
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2013-01-16 19:10:17 +00:00
|
|
|
"EGL: Failed to bind OpenGL ES: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2012-07-22 15:06:37 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
else
|
2012-07-22 15:06:37 +00:00
|
|
|
{
|
|
|
|
if (!eglBindAPI(EGL_OPENGL_API))
|
|
|
|
{
|
2013-01-16 19:10:17 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"EGL: Failed to bind OpenGL: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2012-07-22 15:06:37 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.egl.KHR_create_context)
|
2012-07-22 00:00:00 +00:00
|
|
|
{
|
2012-12-16 16:04:43 +00:00
|
|
|
int index = 0, mask = 0, flags = 0, strategy = 0;
|
2012-07-21 23:33:42 +00:00
|
|
|
|
2012-12-16 16:04:43 +00:00
|
|
|
if (wndconfig->clientAPI == GLFW_OPENGL_API)
|
2012-07-22 00:00:00 +00:00
|
|
|
{
|
2012-12-16 16:04:43 +00:00
|
|
|
if (wndconfig->glProfile == GLFW_OPENGL_CORE_PROFILE)
|
|
|
|
mask |= EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
|
|
|
|
else if (wndconfig->glProfile == GLFW_OPENGL_COMPAT_PROFILE)
|
|
|
|
mask |= EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR;
|
2012-07-21 23:33:42 +00:00
|
|
|
|
2012-07-22 00:00:00 +00:00
|
|
|
if (wndconfig->glForward)
|
|
|
|
flags |= EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR;
|
2012-07-21 23:33:42 +00:00
|
|
|
|
2012-07-22 00:00:00 +00:00
|
|
|
if (wndconfig->glDebug)
|
|
|
|
flags |= EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR;
|
|
|
|
}
|
2012-07-21 23:33:42 +00:00
|
|
|
|
2012-12-16 16:04:43 +00:00
|
|
|
if (wndconfig->glRobustness != GLFW_NO_ROBUSTNESS)
|
2012-07-22 00:00:00 +00:00
|
|
|
{
|
2012-12-13 01:22:39 +00:00
|
|
|
if (wndconfig->glRobustness == GLFW_NO_RESET_NOTIFICATION)
|
2012-07-22 00:00:00 +00:00
|
|
|
strategy = EGL_NO_RESET_NOTIFICATION_KHR;
|
2012-12-13 01:22:39 +00:00
|
|
|
else if (wndconfig->glRobustness == GLFW_LOSE_CONTEXT_ON_RESET)
|
2012-07-22 00:00:00 +00:00
|
|
|
strategy = EGL_LOSE_CONTEXT_ON_RESET_KHR;
|
|
|
|
|
2012-12-16 16:04:43 +00:00
|
|
|
flags |= EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wndconfig->glMajor != 1 || wndconfig->glMinor != 0)
|
|
|
|
{
|
|
|
|
setEGLattrib(EGL_CONTEXT_MAJOR_VERSION_KHR, wndconfig->glMajor);
|
|
|
|
setEGLattrib(EGL_CONTEXT_MINOR_VERSION_KHR, wndconfig->glMinor);
|
2012-07-21 23:33:42 +00:00
|
|
|
}
|
2012-12-16 16:04:43 +00:00
|
|
|
|
|
|
|
if (mask)
|
|
|
|
setEGLattrib(EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR, mask);
|
|
|
|
|
|
|
|
if (flags)
|
|
|
|
setEGLattrib(EGL_CONTEXT_FLAGS_KHR, flags);
|
|
|
|
|
|
|
|
if (strategy)
|
|
|
|
setEGLattrib(EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR, strategy);
|
|
|
|
|
|
|
|
setEGLattrib(EGL_NONE, EGL_NONE);
|
2012-07-21 23:33:42 +00:00
|
|
|
}
|
2012-07-22 00:00:00 +00:00
|
|
|
else
|
|
|
|
{
|
2012-12-16 16:04:43 +00:00
|
|
|
int index = 0;
|
|
|
|
|
2012-07-22 00:00:00 +00:00
|
|
|
if (wndconfig->clientAPI == GLFW_OPENGL_ES_API)
|
2012-12-16 16:04:43 +00:00
|
|
|
setEGLattrib(EGL_CONTEXT_CLIENT_VERSION, wndconfig->glMajor);
|
2012-07-21 23:33:42 +00:00
|
|
|
|
2012-12-16 16:04:43 +00:00
|
|
|
setEGLattrib(EGL_NONE, EGL_NONE);
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window->egl.context = eglCreateContext(_glfw.egl.display,
|
2012-07-20 16:04:43 +00:00
|
|
|
config, share, attribs);
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.context == EGL_NO_CONTEXT)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
|
|
|
// TODO: Handle all the various error codes here
|
|
|
|
|
2013-01-16 19:10:17 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"EGL: Failed to create context: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2012-04-25 04:58:27 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window->egl.config = config;
|
2012-04-25 04:58:27 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef setEGLattrib
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Destroy the OpenGL context
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwDestroyContext(_GLFWwindow* window)
|
|
|
|
{
|
2013-01-04 02:56:33 +00:00
|
|
|
#if defined(_GLFW_X11)
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.visual)
|
2012-04-25 23:26:01 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
XFree(window->egl.visual);
|
|
|
|
window->egl.visual = NULL;
|
2012-04-25 23:26:01 +00:00
|
|
|
}
|
2013-01-04 02:54:52 +00:00
|
|
|
#endif // _GLFW_X11
|
2012-04-25 23:26:01 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.surface)
|
2012-04-25 06:35:47 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
eglDestroySurface(_glfw.egl.display, window->egl.surface);
|
|
|
|
window->egl.surface = EGL_NO_SURFACE;
|
2012-04-25 06:35:47 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.context)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
eglDestroyContext(_glfw.egl.display, window->egl.context);
|
|
|
|
window->egl.context = EGL_NO_CONTEXT;
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-12-13 21:43:23 +00:00
|
|
|
//========================================================================
|
|
|
|
// Analyzes the specified context for possible recreation
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
int _glfwAnalyzeContext(const _GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
|
|
|
{
|
2013-01-04 02:54:52 +00:00
|
|
|
#if defined(_GLFW_WIN32)
|
2012-12-13 21:43:23 +00:00
|
|
|
return _GLFW_RECREATION_NOT_NEEDED;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// Make the OpenGL context associated with the specified window current
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwPlatformMakeContextCurrent(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
if (window)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.surface == EGL_NO_SURFACE)
|
2012-04-25 06:35:47 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
window->egl.surface = eglCreateWindowSurface(_glfw.egl.display,
|
|
|
|
window->egl.config,
|
2012-07-19 22:14:52 +00:00
|
|
|
_GLFW_EGL_NATIVE_WINDOW,
|
2012-07-19 21:51:51 +00:00
|
|
|
NULL);
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->egl.surface == EGL_NO_SURFACE)
|
2012-04-25 06:35:47 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2013-01-16 19:10:17 +00:00
|
|
|
"EGL: Failed to create window surface: %s",
|
|
|
|
getErrorString(eglGetError()));
|
2012-04-25 06:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
eglMakeCurrent(_glfw.egl.display,
|
|
|
|
window->egl.surface,
|
|
|
|
window->egl.surface,
|
|
|
|
window->egl.context);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
else
|
2012-07-19 21:51:51 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
eglMakeCurrent(_glfw.egl.display,
|
2012-07-19 21:51:51 +00:00
|
|
|
EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
|
|
|
|
}
|
2012-09-09 17:52:33 +00:00
|
|
|
|
|
|
|
_glfwCurrentWindow = window;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Return the window object whose context is current
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
_GLFWwindow* _glfwPlatformGetCurrentContext(void)
|
|
|
|
{
|
|
|
|
return _glfwCurrentWindow;
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Swap OpenGL buffers
|
|
|
|
//========================================================================
|
|
|
|
|
2012-09-06 19:05:03 +00:00
|
|
|
void _glfwPlatformSwapBuffers(_GLFWwindow* window)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
eglSwapBuffers(_glfw.egl.display, window->egl.surface);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Set double buffering swap interval
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwPlatformSwapInterval(int interval)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
eglSwapInterval(_glfw.egl.display, interval);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Check if an OpenGL extension is available at runtime
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
int _glfwPlatformExtensionSupported(const char* extension)
|
|
|
|
{
|
|
|
|
const char* extensions;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
extensions = eglQueryString(_glfw.egl.display, EGL_EXTENSIONS);
|
2012-04-25 04:58:27 +00:00
|
|
|
if (extensions != NULL)
|
|
|
|
{
|
2012-07-19 21:51:51 +00:00
|
|
|
if (_glfwStringInExtensionString(extension, (unsigned char*) extensions))
|
2012-04-25 04:58:27 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Get the function pointer to an OpenGL function
|
|
|
|
//========================================================================
|
|
|
|
|
2012-07-17 20:06:30 +00:00
|
|
|
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
2013-01-04 05:59:07 +00:00
|
|
|
return eglGetProcAddress(procname);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 21:38:14 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Return the EGL display
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
GLFWAPI EGLDisplay glfwGetEGLDisplay(void)
|
|
|
|
{
|
|
|
|
if (!_glfwInitialized)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_NOT_INITIALIZED, NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _glfw.egl.display;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Return the WGL context of the specified window
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
GLFWAPI EGLContext glfwGetEGLContext(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
|
|
|
if (!_glfwInitialized)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_NOT_INITIALIZED, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return window->egl.context;
|
|
|
|
}
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Return the EGL surface of the specified window
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
GLFWAPI EGLSurface glfwGetEGLSurface(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
|
|
|
if (!_glfwInitialized)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_NOT_INITIALIZED, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return window->egl.surface;
|
|
|
|
}
|
|
|
|
|