2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW - An OpenGL library
|
|
|
|
// Platform: X11/EGL/GLES
|
|
|
|
// 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>
|
|
|
|
|
|
|
|
// Max number of EGL configuration we handle
|
|
|
|
#define _GLFW_EGL_CONFIG_IN 15
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// Returns the specified attribute of the specified EGLConfig
|
|
|
|
//========================================================================
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
static int getFBConfigAttrib(EGLConfig fbconfig, int attrib)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
|
|
|
int value;
|
|
|
|
eglGetConfigAttrib(_glfwLibrary.EGL.display, fbconfig, attrib, &value);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Return a list of available and usable framebuffer configs
|
|
|
|
//========================================================================
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
unsigned int* found)
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
|
|
|
EGLConfig fbconfigs[_GLFW_EGL_CONFIG_IN];
|
|
|
|
_GLFWfbconfig* result;
|
|
|
|
int i, count = 0;
|
|
|
|
|
|
|
|
*found = 0;
|
|
|
|
|
|
|
|
eglGetConfigs(_glfwLibrary.EGL.display, fbconfigs,
|
2012-07-19 21:51:51 +00:00
|
|
|
_GLFW_EGL_CONFIG_IN, &count);
|
2012-04-25 04:58:27 +00:00
|
|
|
if (!count)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_OPENGL_UNAVAILABLE,
|
|
|
|
"X11/EGL: No EGLConfigs returned");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = (_GLFWfbconfig*) malloc(sizeof(_GLFWfbconfig) * count);
|
|
|
|
if (!result)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_OUT_OF_MEMORY,
|
|
|
|
"X11/EGL: Failed to allocate _GLFWfbconfig array");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
2012-04-25 06:35:47 +00:00
|
|
|
if (!getFBConfigAttrib(fbconfigs[i], EGL_NATIVE_VISUAL_ID))
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
|
|
|
// Only consider EGLConfigs with associated visuals
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
if (!(getFBConfigAttrib(fbconfigs[i],
|
2012-04-25 04:58:27 +00:00
|
|
|
EGL_COLOR_BUFFER_TYPE) & EGL_RGB_BUFFER))
|
|
|
|
{
|
|
|
|
// Only consider RGB(A) EGLConfigs
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-06-30 19:25:26 +00:00
|
|
|
if (!(getFBConfigAttrib(fbconfigs[i], EGL_SURFACE_TYPE) & EGL_WINDOW_BIT))
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
|
|
|
// Only consider window EGLConfigs
|
|
|
|
continue;
|
|
|
|
}
|
2012-06-30 19:25:26 +00:00
|
|
|
|
|
|
|
if (!(getFBConfigAttrib(fbconfigs[i], EGL_RENDERABLE_TYPE) & EGL_OPENGL_ES_BIT) &&
|
|
|
|
!(getFBConfigAttrib(fbconfigs[i], EGL_RENDERABLE_TYPE) & EGL_OPENGL_ES2_BIT))
|
|
|
|
{
|
|
|
|
// Only consider OpenGL ES context
|
|
|
|
continue;
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-06-30 19:35:26 +00:00
|
|
|
if (wndconfig->glProfile == GLFW_OPENGL_ES2_PROFILE &&
|
|
|
|
!(getFBConfigAttrib(fbconfigs[i], EGL_RENDERABLE_TYPE) & EGL_OPENGL_ES2_BIT))
|
|
|
|
{
|
|
|
|
// User requested only OpenGL ES 2.0 context
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
result[*found].redBits = getFBConfigAttrib(fbconfigs[i], EGL_RED_SIZE);
|
|
|
|
result[*found].greenBits = getFBConfigAttrib(fbconfigs[i], EGL_GREEN_SIZE);
|
|
|
|
result[*found].blueBits = getFBConfigAttrib(fbconfigs[i], EGL_BLUE_SIZE);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
result[*found].alphaBits = getFBConfigAttrib(fbconfigs[i], EGL_ALPHA_SIZE);
|
|
|
|
result[*found].depthBits = getFBConfigAttrib(fbconfigs[i], EGL_DEPTH_SIZE);
|
|
|
|
result[*found].stencilBits = getFBConfigAttrib(fbconfigs[i], EGL_STENCIL_SIZE);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
result[*found].samples = getFBConfigAttrib(fbconfigs[i], EGL_SAMPLES);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
result[*found].platformID = (GLFWintptr) getFBConfigAttrib(fbconfigs[i], EGL_CONFIG_ID);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
|
|
|
(*found)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// Read back framebuffer parameters from the context
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
static void refreshContextParams(_GLFWwindow* window, EGLint fbconfigID)
|
|
|
|
{
|
|
|
|
EGLint dummy;
|
|
|
|
EGLConfig fbconfig[_GLFW_EGL_CONFIG_IN];
|
|
|
|
|
|
|
|
int attribs[] = { EGL_CONFIG_ID, fbconfigID, None };
|
|
|
|
|
|
|
|
eglChooseConfig(_glfwLibrary.EGL.display,
|
2012-07-19 21:51:51 +00:00
|
|
|
attribs,
|
|
|
|
fbconfig,
|
|
|
|
_GLFW_EGL_CONFIG_IN,
|
|
|
|
&dummy);
|
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
if (!dummy)
|
|
|
|
{
|
|
|
|
// This should never ever happen
|
|
|
|
// TODO: Flag this as an error and propagate up
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR, "X11/EGL: Cannot find known "
|
|
|
|
"EGLConfig by ID. This cannot "
|
|
|
|
"happen. Have a nice day.\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
// There is no clear definition of an "accelerated" context on X11/EGL, and
|
|
|
|
// true sounds better than false, so we hardcode true here
|
|
|
|
window->accelerated = GL_TRUE;
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
window->redBits = getFBConfigAttrib(*fbconfig, EGL_RED_SIZE);
|
|
|
|
window->greenBits = getFBConfigAttrib(*fbconfig, EGL_GREEN_SIZE);
|
|
|
|
window->blueBits = getFBConfigAttrib(*fbconfig, EGL_BLUE_SIZE);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
window->alphaBits = getFBConfigAttrib(*fbconfig, EGL_ALPHA_SIZE);
|
|
|
|
window->depthBits = getFBConfigAttrib(*fbconfig, EGL_DEPTH_SIZE);
|
|
|
|
window->stencilBits = getFBConfigAttrib(*fbconfig, EGL_STENCIL_SIZE);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
window->samples = getFBConfigAttrib(*fbconfig, EGL_SAMPLES);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Create the actual OpenGL(|ES) context
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#define setEGLattrib(attribs, index, attribName, attribValue) \
|
|
|
|
attribs[index++] = attribName; \
|
|
|
|
attribs[index++] = attribValue;
|
|
|
|
|
|
|
|
static int createContext(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
EGLint fbconfigID)
|
|
|
|
{
|
2012-04-25 06:35:47 +00:00
|
|
|
int attribs[40], visMask;
|
2012-07-19 22:19:58 +00:00
|
|
|
EGLint dummy, index, visualID = 0;
|
2012-04-25 06:35:47 +00:00
|
|
|
EGLint red_size, green_size, blue_size, alpha_size;
|
2012-04-25 04:58:27 +00:00
|
|
|
EGLConfig fbconfig[_GLFW_EGL_CONFIG_IN];
|
|
|
|
EGLContext share = NULL;
|
|
|
|
XVisualInfo visTemplate;
|
|
|
|
|
|
|
|
if (wndconfig->share)
|
|
|
|
share = wndconfig->share->EGL.context;
|
|
|
|
|
|
|
|
// Retrieve the previously selected EGLConfig
|
|
|
|
{
|
|
|
|
index = 0;
|
|
|
|
|
|
|
|
setEGLattrib(attribs, index, EGL_CONFIG_ID, fbconfigID);
|
2012-04-25 06:35:47 +00:00
|
|
|
setEGLattrib(attribs, index, EGL_NONE, EGL_NONE);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
|
|
|
eglChooseConfig(_glfwLibrary.EGL.display,
|
2012-07-19 21:51:51 +00:00
|
|
|
attribs,
|
|
|
|
fbconfig,
|
|
|
|
_GLFW_EGL_CONFIG_IN,
|
|
|
|
&dummy);
|
2012-04-25 04:58:27 +00:00
|
|
|
|
|
|
|
if (!dummy)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11/EGL: Failed to retrieve the selected EGLConfig");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve the corresponding visual
|
2012-04-25 06:35:47 +00:00
|
|
|
// NOTE: This is the only non-portable code in this file.
|
|
|
|
// Maybe it would not hurt too much to add #ifdefs for different platforms?
|
2012-07-19 22:19:58 +00:00
|
|
|
eglGetConfigAttrib(_glfwLibrary.EGL.display, *fbconfig, EGL_NATIVE_VISUAL_ID, &visualID);
|
2012-04-25 06:35:47 +00:00
|
|
|
|
|
|
|
// Init visual template
|
|
|
|
visTemplate.screen = _glfwLibrary.X11.screen;
|
|
|
|
visMask = VisualScreenMask;
|
|
|
|
|
2012-07-19 22:19:58 +00:00
|
|
|
if (visualID)
|
2012-04-25 06:35:47 +00:00
|
|
|
{
|
|
|
|
// The X window visual must match the EGL config
|
2012-07-19 22:19:58 +00:00
|
|
|
visTemplate.visualid = visualID;
|
2012-04-25 06:35:47 +00:00
|
|
|
visMask |= VisualIDMask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// some EGL drivers don't implement the EGL_NATIVE_VISUAL_ID
|
|
|
|
// attribute, so attempt to find the closest match.
|
|
|
|
|
|
|
|
eglGetConfigAttrib(_glfwLibrary.EGL.display, *fbconfig,
|
2012-07-19 21:51:51 +00:00
|
|
|
EGL_RED_SIZE, &red_size);
|
|
|
|
eglGetConfigAttrib(_glfwLibrary.EGL.display, *fbconfig,
|
|
|
|
EGL_GREEN_SIZE, &green_size);
|
|
|
|
eglGetConfigAttrib(_glfwLibrary.EGL.display, *fbconfig,
|
|
|
|
EGL_BLUE_SIZE, &blue_size);
|
|
|
|
eglGetConfigAttrib(_glfwLibrary.EGL.display, *fbconfig,
|
|
|
|
EGL_ALPHA_SIZE, &alpha_size);
|
2012-04-25 06:35:47 +00:00
|
|
|
|
|
|
|
visTemplate.depth = red_size + green_size + blue_size + alpha_size;
|
|
|
|
visMask |= VisualDepthMask;
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
window->EGL.visual = XGetVisualInfo(_glfwLibrary.X11.display,
|
|
|
|
visMask, &visTemplate, &dummy);
|
|
|
|
|
|
|
|
if (window->EGL.visual == NULL)
|
|
|
|
{
|
2012-04-25 04:58:27 +00:00
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11/GLX: Failed to retrieve visual for EGLConfig");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
index = 0;
|
2012-04-25 04:58:27 +00:00
|
|
|
if (wndconfig->glProfile == GLFW_OPENGL_ES2_PROFILE)
|
|
|
|
{
|
|
|
|
setEGLattrib(attribs, index, EGL_CONTEXT_CLIENT_VERSION, 2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setEGLattrib(attribs, index, EGL_CONTEXT_CLIENT_VERSION, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
setEGLattrib(attribs, index, EGL_NONE, EGL_NONE);
|
|
|
|
|
|
|
|
eglBindAPI(EGL_OPENGL_ES_API);
|
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
window->EGL.context = eglCreateContext(_glfwLibrary.EGL.display,
|
|
|
|
*fbconfig, share, attribs);
|
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
if (window->EGL.context == EGL_NO_CONTEXT)
|
|
|
|
{
|
|
|
|
// TODO: Handle all the various error codes here
|
|
|
|
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
2012-07-19 22:19:58 +00:00
|
|
|
"X11/EGL: Failed to create OpenGL ES context");
|
2012-04-25 04:58:27 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
window->EGL.config = *fbconfig;
|
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
refreshContextParams(window, fbconfigID);
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef setEGLattrib
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Initialize EGL
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
int _glfwInitOpenGL(void)
|
|
|
|
{
|
2012-07-19 22:15:36 +00:00
|
|
|
#ifdef _GLFW_DLOPEN_LIBEGL
|
2012-04-25 04:58:27 +00:00
|
|
|
int i;
|
|
|
|
char* libEGL_names[ ] =
|
|
|
|
{
|
|
|
|
"libEGL.so",
|
|
|
|
"libEGL.so.1",
|
|
|
|
"/usr/lib/libEGL.so",
|
|
|
|
"/usr/lib/libEGL.so.1",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
for (i = 0; libEGL_names[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
_glfwLibrary.EGL.libEGL = dlopen(libEGL_names[i], RTLD_LAZY | RTLD_GLOBAL);
|
|
|
|
if (_glfwLibrary.EGL.libEGL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_glfwLibrary.EGL.libEGL)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR, "X11/EGL: Failed to find libEGL");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-19 22:14:52 +00:00
|
|
|
_glfwLibrary.EGL.display = eglGetDisplay(_GLFW_EGL_NATIVE_DISPLAY);
|
2012-04-25 04:58:27 +00:00
|
|
|
if (_glfwLibrary.EGL.display == EGL_NO_DISPLAY)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_OPENGL_UNAVAILABLE,
|
|
|
|
"X11/EGL: Failed to get EGL display");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!eglInitialize(_glfwLibrary.EGL.display,
|
2012-07-19 21:51:51 +00:00
|
|
|
&_glfwLibrary.EGL.majorVersion,
|
|
|
|
&_glfwLibrary.EGL.minorVersion))
|
2012-04-25 04:58:27 +00:00
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_OPENGL_UNAVAILABLE,
|
|
|
|
"X11/EGL: Failed to initialize EGL");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Terminate EGL
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwTerminateOpenGL(void)
|
|
|
|
{
|
2012-07-19 22:15:36 +00:00
|
|
|
#ifdef _GLFW_DLOPEN_LIBEGL
|
2012-04-25 04:58:27 +00:00
|
|
|
if (_glfwLibrary.EGL.libEGL != NULL)
|
|
|
|
{
|
|
|
|
dlclose(_glfwLibrary.EGL.libEGL);
|
|
|
|
_glfwLibrary.EGL.libEGL = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2012-07-19 22:19:58 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
eglTerminate(_glfwLibrary.EGL.display);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Prepare for creation of the OpenGL context
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
int _glfwCreateContext(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
|
|
|
{
|
|
|
|
_GLFWfbconfig closest;
|
|
|
|
|
|
|
|
// Choose the best available fbconfig
|
|
|
|
{
|
|
|
|
unsigned int fbcount;
|
|
|
|
_GLFWfbconfig* fbconfigs;
|
|
|
|
const _GLFWfbconfig* result;
|
|
|
|
|
2012-06-30 19:35:26 +00:00
|
|
|
fbconfigs = getFBConfigs(window, wndconfig, &fbcount);
|
2012-04-25 04:58:27 +00:00
|
|
|
if (!fbconfigs)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11/EGL: No usable EGLFBConfigs found");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = _glfwChooseFBConfig(fbconfig, fbconfigs, fbcount);
|
|
|
|
if (!result)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11/EGL: No EGLFBConfig matched the criteria");
|
|
|
|
|
|
|
|
free(fbconfigs);
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
closest = *result;
|
|
|
|
free(fbconfigs);
|
|
|
|
}
|
|
|
|
|
|
|
|
return createContext(window, wndconfig, closest.platformID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Destroy the OpenGL context
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwDestroyContext(_GLFWwindow* window)
|
|
|
|
{
|
2012-04-25 23:26:01 +00:00
|
|
|
if (window->EGL.visual)
|
|
|
|
{
|
|
|
|
XFree(window->EGL.visual);
|
|
|
|
window->EGL.visual = NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-25 06:35:47 +00:00
|
|
|
if (window->EGL.surface)
|
|
|
|
{
|
|
|
|
eglDestroySurface(_glfwLibrary.EGL.display, window->EGL.surface);
|
|
|
|
window->EGL.surface = EGL_NO_SURFACE;
|
|
|
|
}
|
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
if (window->EGL.context)
|
|
|
|
{
|
2012-04-25 06:35:47 +00:00
|
|
|
eglDestroyContext(_glfwLibrary.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-04-25 23:26:01 +00:00
|
|
|
//========================================================================
|
|
|
|
// Return the X visual associated with the specified context
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
XVisualInfo* _glfwGetContextVisual(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
return window->EGL.visual;
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
//========================================================================
|
|
|
|
// Make the OpenGL context associated with the specified window current
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwPlatformMakeContextCurrent(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
if (window)
|
|
|
|
{
|
2012-04-25 06:35:47 +00:00
|
|
|
if (window->EGL.surface == EGL_NO_SURFACE)
|
|
|
|
{
|
|
|
|
window->EGL.surface = eglCreateWindowSurface(_glfwLibrary.EGL.display,
|
2012-07-19 21:51:51 +00:00
|
|
|
window->EGL.config,
|
2012-07-19 22:14:52 +00:00
|
|
|
_GLFW_EGL_NATIVE_WINDOW,
|
2012-07-19 21:51:51 +00:00
|
|
|
NULL);
|
2012-04-25 06:35:47 +00:00
|
|
|
if (window->EGL.surface == EGL_NO_SURFACE)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
2012-07-19 22:19:58 +00:00
|
|
|
"X11/EGL: Failed to create window surface");
|
2012-04-25 06:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-19 21:51:51 +00:00
|
|
|
|
2012-04-25 04:58:27 +00:00
|
|
|
eglMakeCurrent(_glfwLibrary.EGL.display,
|
|
|
|
window->EGL.surface,
|
|
|
|
window->EGL.surface,
|
|
|
|
window->EGL.context);
|
|
|
|
}
|
|
|
|
else
|
2012-07-19 21:51:51 +00:00
|
|
|
{
|
|
|
|
eglMakeCurrent(_glfwLibrary.EGL.display,
|
|
|
|
EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
|
|
|
|
}
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Swap OpenGL buffers
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwPlatformSwapBuffers(void)
|
|
|
|
{
|
|
|
|
eglSwapBuffers(_glfwLibrary.EGL.display,
|
|
|
|
_glfwLibrary.currentWindow->EGL.surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Set double buffering swap interval
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwPlatformSwapInterval(int interval)
|
|
|
|
{
|
|
|
|
eglSwapInterval(_glfwLibrary.EGL.display, interval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Check if an OpenGL extension is available at runtime
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
int _glfwPlatformExtensionSupported(const char* extension)
|
|
|
|
{
|
|
|
|
const char* extensions;
|
|
|
|
|
|
|
|
// Get list of GLX extensions
|
|
|
|
extensions = eglQueryString(_glfwLibrary.EGL.display,
|
|
|
|
EGL_EXTENSIONS);
|
|
|
|
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
|
|
|
{
|
2012-07-17 20:06:30 +00:00
|
|
|
return _glfw_eglGetProcAddress(procname);
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Copies the specified OpenGL state categories from src to dst
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwPlatformCopyContext(_GLFWwindow* src, _GLFWwindow* dst, unsigned long mask)
|
|
|
|
{
|
2012-07-19 20:11:45 +00:00
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11/EGL: Context copying not supported by EGL");
|
2012-04-25 04:58:27 +00:00
|
|
|
}
|
|
|
|
|