2012-04-25 04:58:07 +00:00
|
|
|
//========================================================================
|
2015-06-01 20:55:06 +00:00
|
|
|
// GLFW 3.2 EGL - www.glfw.org
|
2012-04-25 04:58:07 +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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2015-06-07 17:32:24 +00:00
|
|
|
#ifndef _glfw3_egl_context_h_
|
|
|
|
#define _glfw3_egl_context_h_
|
2012-04-25 04:58:07 +00:00
|
|
|
|
2015-08-24 14:39:01 +00:00
|
|
|
#if defined(_GLFW_WIN32)
|
|
|
|
#define _glfw_dlopen(name) LoadLibraryA(name)
|
|
|
|
#define _glfw_dlclose(handle) FreeLibrary((HMODULE) handle)
|
|
|
|
#define _glfw_dlsym(handle, name) GetProcAddress((HMODULE) handle, name)
|
|
|
|
#else
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL)
|
|
|
|
#define _glfw_dlclose(handle) dlclose(handle)
|
|
|
|
#define _glfw_dlsym(handle, name) dlsym(handle, name)
|
|
|
|
#endif
|
|
|
|
|
2012-04-25 04:58:07 +00:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
|
2012-07-21 21:51:44 +00:00
|
|
|
// This path may need to be changed if you build GLFW using your own setup
|
|
|
|
// We ship and use our own copy of eglext.h since GLFW uses fairly new
|
|
|
|
// extensions and not all operating systems come with an up-to-date version
|
2013-04-17 13:42:21 +00:00
|
|
|
#include "../deps/EGL/eglext.h"
|
2012-07-21 21:51:44 +00:00
|
|
|
|
2015-08-24 14:39:01 +00:00
|
|
|
// EGL function pointer typedefs
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLGETCONFIGATTRIBPROC)(EGLDisplay,EGLConfig,EGLint,EGLint*);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLGETCONFIGSPROC)(EGLDisplay,EGLConfig*,EGLint,EGLint*);
|
|
|
|
typedef EGLDisplay (EGLAPIENTRY * PFNEGLGETDISPLAYPROC)(EGLNativeDisplayType);
|
|
|
|
typedef EGLint (EGLAPIENTRY * PFNEGLGETERRORPROC)(void);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLINITIALIZEPROC)(EGLDisplay,EGLint*,EGLint*);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLTERMINATEPROC)(EGLDisplay);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLBINDAPIPROC)(EGLenum);
|
|
|
|
typedef EGLContext (EGLAPIENTRY * PFNEGLCREATECONTEXTPROC)(EGLDisplay,EGLConfig,EGLContext,const EGLint*);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLDESTROYSURFACEPROC)(EGLDisplay,EGLSurface);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLDESTROYCONTEXTPROC)(EGLDisplay,EGLContext);
|
|
|
|
typedef EGLSurface (EGLAPIENTRY * PFNEGLCREATEWINDOWSURFACEPROC)(EGLDisplay,EGLConfig,EGLNativeWindowType,const EGLint*);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLMAKECURRENTPROC)(EGLDisplay,EGLSurface,EGLSurface,EGLContext);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLSWAPBUFFERSPROC)(EGLDisplay,EGLSurface);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY * PFNEGLSWAPINTERVALPROC)(EGLDisplay,EGLint);
|
|
|
|
typedef const char* (EGLAPIENTRY * PFNEGLQUERYSTRINGPROC)(EGLDisplay,EGLint);
|
|
|
|
typedef GLFWglproc (EGLAPIENTRY * PFNEGLGETPROCADDRESSPROC)(const char*);
|
|
|
|
#define _glfw_eglGetConfigAttrib _glfw.egl.GetConfigAttrib
|
|
|
|
#define _glfw_eglGetConfigs _glfw.egl.GetConfigs
|
|
|
|
#define _glfw_eglGetDisplay _glfw.egl.GetDisplay
|
|
|
|
#define _glfw_eglGetError _glfw.egl.GetError
|
|
|
|
#define _glfw_eglInitialize _glfw.egl.Initialize
|
|
|
|
#define _glfw_eglTerminate _glfw.egl.Terminate
|
|
|
|
#define _glfw_eglBindAPI _glfw.egl.BindAPI
|
|
|
|
#define _glfw_eglCreateContext _glfw.egl.CreateContext
|
|
|
|
#define _glfw_eglDestroySurface _glfw.egl.DestroySurface
|
|
|
|
#define _glfw_eglDestroyContext _glfw.egl.DestroyContext
|
|
|
|
#define _glfw_eglCreateWindowSurface _glfw.egl.CreateWindowSurface
|
|
|
|
#define _glfw_eglMakeCurrent _glfw.egl.MakeCurrent
|
|
|
|
#define _glfw_eglSwapBuffers _glfw.egl.SwapBuffers
|
|
|
|
#define _glfw_eglSwapInterval _glfw.egl.SwapInterval
|
|
|
|
#define _glfw_eglQueryString _glfw.egl.QueryString
|
|
|
|
#define _glfw_eglGetProcAddress _glfw.egl.GetProcAddress
|
|
|
|
|
2014-04-08 14:30:11 +00:00
|
|
|
#define _GLFW_PLATFORM_FBCONFIG EGLConfig egl
|
|
|
|
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextEGL egl
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE _GLFWlibraryEGL egl
|
2012-04-25 04:58:07 +00:00
|
|
|
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// EGL-specific per-context data
|
|
|
|
//
|
2012-04-25 04:58:07 +00:00
|
|
|
typedef struct _GLFWcontextEGL
|
|
|
|
{
|
2015-08-25 00:26:10 +00:00
|
|
|
EGLConfig config;
|
|
|
|
EGLContext context;
|
|
|
|
EGLSurface surface;
|
2012-09-09 17:17:46 +00:00
|
|
|
|
2012-11-27 14:02:26 +00:00
|
|
|
#if defined(_GLFW_X11)
|
2015-08-25 00:26:10 +00:00
|
|
|
XVisualInfo* visual;
|
2012-09-09 17:17:46 +00:00
|
|
|
#endif
|
2014-09-02 17:42:43 +00:00
|
|
|
|
2015-08-27 13:11:48 +00:00
|
|
|
void* client;
|
|
|
|
|
2012-04-25 04:58:07 +00:00
|
|
|
} _GLFWcontextEGL;
|
|
|
|
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// EGL-specific global data
|
|
|
|
//
|
2012-04-25 04:58:07 +00:00
|
|
|
typedef struct _GLFWlibraryEGL
|
|
|
|
{
|
|
|
|
EGLDisplay display;
|
2015-05-27 12:35:31 +00:00
|
|
|
EGLint major, minor;
|
2012-04-25 04:58:07 +00:00
|
|
|
|
2012-07-21 23:33:42 +00:00
|
|
|
GLboolean KHR_create_context;
|
|
|
|
|
2015-08-24 14:39:01 +00:00
|
|
|
void* handle;
|
|
|
|
|
|
|
|
PFNEGLGETCONFIGATTRIBPROC GetConfigAttrib;
|
|
|
|
PFNEGLGETCONFIGSPROC GetConfigs;
|
|
|
|
PFNEGLGETDISPLAYPROC GetDisplay;
|
|
|
|
PFNEGLGETERRORPROC GetError;
|
|
|
|
PFNEGLINITIALIZEPROC Initialize;
|
|
|
|
PFNEGLTERMINATEPROC Terminate;
|
|
|
|
PFNEGLBINDAPIPROC BindAPI;
|
|
|
|
PFNEGLCREATECONTEXTPROC CreateContext;
|
|
|
|
PFNEGLDESTROYSURFACEPROC DestroySurface;
|
|
|
|
PFNEGLDESTROYCONTEXTPROC DestroyContext;
|
|
|
|
PFNEGLCREATEWINDOWSURFACEPROC CreateWindowSurface;
|
|
|
|
PFNEGLMAKECURRENTPROC MakeCurrent;
|
|
|
|
PFNEGLSWAPBUFFERSPROC SwapBuffers;
|
|
|
|
PFNEGLSWAPINTERVALPROC SwapInterval;
|
|
|
|
PFNEGLQUERYSTRINGPROC QueryString;
|
|
|
|
PFNEGLGETPROCADDRESSPROC GetProcAddress;
|
|
|
|
|
2012-04-25 04:58:07 +00:00
|
|
|
} _GLFWlibraryEGL;
|
|
|
|
|
|
|
|
|
2014-01-22 00:23:35 +00:00
|
|
|
int _glfwInitContextAPI(void);
|
|
|
|
void _glfwTerminateContextAPI(void);
|
|
|
|
int _glfwCreateContext(_GLFWwindow* window,
|
2014-03-14 21:10:58 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2014-01-22 00:23:35 +00:00
|
|
|
const _GLFWfbconfig* fbconfig);
|
|
|
|
void _glfwDestroyContext(_GLFWwindow* window);
|
|
|
|
int _glfwAnalyzeContext(const _GLFWwindow* window,
|
2014-03-19 12:15:04 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2014-01-22 00:23:35 +00:00
|
|
|
const _GLFWfbconfig* fbconfig);
|
|
|
|
|
2015-06-07 17:32:24 +00:00
|
|
|
#endif // _glfw3_egl_context_h_
|