2013-01-13 21:39:25 -05:00
|
|
|
/*
|
2014-02-11 01:07:04 -05:00
|
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
2013-01-13 21:39:25 -05:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bgfx_p.h"
|
|
|
|
|
|
|
|
#if (BGFX_CONFIG_RENDERER_OPENGLES2|BGFX_CONFIG_RENDERER_OPENGLES3|BGFX_CONFIG_RENDERER_OPENGL)
|
|
|
|
# include "renderer_gl.h"
|
|
|
|
|
|
|
|
# if BGFX_USE_EGL
|
|
|
|
|
|
|
|
namespace bgfx
|
|
|
|
{
|
2014-02-16 19:40:08 -05:00
|
|
|
#if BX_PLATFORM_WINDOWS
|
|
|
|
typedef void (*EGLPROC)(void);
|
|
|
|
|
|
|
|
typedef EGLPROC (EGLAPIENTRY* PFNEGLGETPROCADDRESSPROC)(const char *procname);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLSWAPINTERVALPROC)(EGLDisplay dpy, EGLint interval);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLMAKECURRENTPROC)(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
|
|
|
|
typedef EGLContext (EGLAPIENTRY* PFNEGLCREATECONTEXTPROC)(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list);
|
|
|
|
typedef EGLSurface (EGLAPIENTRY* PFNEGLCREATEWINDOWSURFACEPROC)(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLCHOOSECONFIGPROC)(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLINITIALIZEPROC)(EGLDisplay dpy, EGLint *major, EGLint *minor);
|
|
|
|
typedef EGLDisplay (EGLAPIENTRY* PFNEGLGETDISPLAYPROC)(EGLNativeDisplayType display_id);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLTERMINATEPROC)(EGLDisplay dpy);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLDESTROYSURFACEPROC)(EGLDisplay dpy, EGLSurface surface);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLDESTROYCONTEXTPROC)(EGLDisplay dpy, EGLContext ctx);
|
|
|
|
typedef EGLBoolean (EGLAPIENTRY* PFNEGLSWAPBUFFERSPROC)(EGLDisplay dpy, EGLSurface surface);
|
|
|
|
|
|
|
|
#define EGL_IMPORT \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLGETPROCADDRESSPROC, eglGetProcAddress); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLSWAPINTERVALPROC, eglSwapInterval); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLMAKECURRENTPROC, eglMakeCurrent); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLCREATECONTEXTPROC, eglCreateContext); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLCREATEWINDOWSURFACEPROC, eglCreateWindowSurface); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLCHOOSECONFIGPROC, eglChooseConfig); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLINITIALIZEPROC, eglInitialize); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLGETDISPLAYPROC, eglGetDisplay); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLTERMINATEPROC, eglTerminate); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLDESTROYSURFACEPROC, eglDestroySurface); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLDESTROYCONTEXTPROC, eglDestroyContext); \
|
|
|
|
EGL_IMPORT_FUNC(PFNEGLSWAPBUFFERSPROC, eglSwapBuffers);
|
|
|
|
|
|
|
|
#define EGL_IMPORT_FUNC(_proto, _func) _proto _func
|
|
|
|
EGL_IMPORT
|
|
|
|
#undef EGL_IMPORT_FUNC
|
|
|
|
|
|
|
|
void* eglOpen()
|
|
|
|
{
|
|
|
|
void* handle = bx::dlopen("libEGL.dll");
|
|
|
|
BGFX_FATAL(NULL != handle, Fatal::UnableToInitialize, "Failed to load libEGL dynamic library.");
|
|
|
|
|
|
|
|
#define EGL_IMPORT_FUNC(_proto, _func) \
|
|
|
|
_func = (_proto)bx::dlsym(handle, #_func); \
|
|
|
|
BGFX_FATAL(NULL != _func, Fatal::UnableToInitialize, "Failed get " #_func ".")
|
|
|
|
EGL_IMPORT
|
|
|
|
#undef EGL_IMPORT_FUNC
|
|
|
|
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void eglClose(void* _handle)
|
|
|
|
{
|
|
|
|
bx::dlclose(_handle);
|
|
|
|
|
|
|
|
#define EGL_IMPORT_FUNC(_proto, _func) _func = NULL
|
|
|
|
EGL_IMPORT
|
|
|
|
#undef EGL_IMPORT_FUNC
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void* eglOpen()
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void eglClose(void* /*_handle*/)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif // BX_PLATFORM_WINDOWS
|
|
|
|
|
2013-12-08 01:01:32 -05:00
|
|
|
# define GL_IMPORT(_optional, _proto, _func, _import) _proto _func
|
2013-01-13 21:39:25 -05:00
|
|
|
# include "glimports.h"
|
|
|
|
# undef GL_IMPORT
|
|
|
|
|
2013-12-09 23:18:51 -05:00
|
|
|
void GlContext::create(uint32_t _width, uint32_t _height)
|
2013-01-13 21:39:25 -05:00
|
|
|
{
|
2014-02-16 19:40:08 -05:00
|
|
|
m_eglLibrary = eglOpen();
|
|
|
|
|
2013-12-11 01:18:00 -05:00
|
|
|
BX_UNUSED(_width, _height);
|
2013-01-13 21:39:25 -05:00
|
|
|
EGLNativeDisplayType ndt = EGL_DEFAULT_DISPLAY;
|
|
|
|
EGLNativeWindowType nwt = (EGLNativeWindowType)NULL;
|
|
|
|
# if BX_PLATFORM_WINDOWS
|
|
|
|
ndt = GetDC(g_bgfxHwnd);
|
|
|
|
nwt = g_bgfxHwnd;
|
|
|
|
# endif // BX_PLATFORM_
|
|
|
|
m_display = eglGetDisplay(ndt);
|
|
|
|
BGFX_FATAL(m_display != EGL_NO_DISPLAY, Fatal::UnableToInitialize, "Failed to create display 0x%08x", m_display);
|
|
|
|
|
|
|
|
EGLint major = 0;
|
|
|
|
EGLint minor = 0;
|
|
|
|
EGLBoolean success = eglInitialize(m_display, &major, &minor);
|
|
|
|
BGFX_FATAL(success && major >= 1 && minor >= 3, Fatal::UnableToInitialize, "Failed to initialize %d.%d", major, minor);
|
|
|
|
|
|
|
|
EGLint attrs[] =
|
|
|
|
{
|
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
|
|
|
|
|
|
# if BX_PLATFORM_ANDROID
|
|
|
|
EGL_DEPTH_SIZE, 16,
|
|
|
|
# else
|
|
|
|
EGL_DEPTH_SIZE, 24,
|
|
|
|
# endif // BX_PLATFORM_
|
2013-10-20 01:17:52 -04:00
|
|
|
EGL_STENCIL_SIZE, 8,
|
2013-01-13 21:39:25 -05:00
|
|
|
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
|
2013-01-14 01:13:49 -05:00
|
|
|
EGLint numConfig = 0;
|
|
|
|
EGLConfig config;
|
|
|
|
success = eglChooseConfig(m_display, attrs, &config, 1, &numConfig);
|
|
|
|
BGFX_FATAL(success, Fatal::UnableToInitialize, "eglChooseConfig");
|
|
|
|
|
2013-04-19 00:16:09 -04:00
|
|
|
# if BX_PLATFORM_ANDROID
|
|
|
|
EGLint format;
|
|
|
|
eglGetConfigAttrib(m_display, config, EGL_NATIVE_VISUAL_ID, &format);
|
2013-12-09 23:18:51 -05:00
|
|
|
ANativeWindow_setBuffersGeometry(g_bgfxAndroidWindow, _width, _height, format);
|
2013-04-19 00:16:09 -04:00
|
|
|
nwt = g_bgfxAndroidWindow;
|
|
|
|
# endif // BX_PLATFORM_ANDROID
|
|
|
|
|
2013-01-14 01:13:49 -05:00
|
|
|
m_surface = eglCreateWindowSurface(m_display, config, nwt, NULL);
|
|
|
|
BGFX_FATAL(m_surface != EGL_NO_SURFACE, Fatal::UnableToInitialize, "Failed to create surface.");
|
|
|
|
|
2013-01-13 21:39:25 -05:00
|
|
|
EGLint contextAttrs[] =
|
|
|
|
{
|
|
|
|
# if BGFX_CONFIG_RENDERER_OPENGLES2
|
|
|
|
EGL_CONTEXT_CLIENT_VERSION, 2,
|
|
|
|
# elif BGFX_CONFIG_RENDERER_OPENGLES3
|
|
|
|
EGL_CONTEXT_CLIENT_VERSION, 3,
|
|
|
|
# endif // BGFX_CONFIG_RENDERER_
|
|
|
|
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
m_context = eglCreateContext(m_display, config, EGL_NO_CONTEXT, contextAttrs);
|
|
|
|
BGFX_FATAL(m_context != EGL_NO_CONTEXT, Fatal::UnableToInitialize, "Failed to create context.");
|
|
|
|
|
|
|
|
success = eglMakeCurrent(m_display, m_surface, m_surface, m_context);
|
|
|
|
BGFX_FATAL(success, Fatal::UnableToInitialize, "Failed to set context.");
|
|
|
|
|
2013-04-27 18:16:05 -04:00
|
|
|
eglSwapInterval(m_display, 0);
|
|
|
|
|
2013-01-13 21:39:25 -05:00
|
|
|
# if BX_PLATFORM_EMSCRIPTEN
|
|
|
|
emscripten_set_canvas_size(_width, _height);
|
|
|
|
# endif // BX_PLATFORM_EMSCRIPTEN
|
|
|
|
|
|
|
|
import();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlContext::destroy()
|
|
|
|
{
|
|
|
|
eglMakeCurrent(EGL_NO_DISPLAY, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
|
|
|
|
eglDestroyContext(m_display, m_context);
|
|
|
|
eglDestroySurface(m_display, m_surface);
|
|
|
|
eglTerminate(m_display);
|
|
|
|
m_context = NULL;
|
2014-02-16 19:40:08 -05:00
|
|
|
|
|
|
|
eglClose(m_eglLibrary);
|
2013-01-13 21:39:25 -05:00
|
|
|
}
|
|
|
|
|
2013-04-27 18:16:05 -04:00
|
|
|
void GlContext::resize(uint32_t /*_width*/, uint32_t /*_height*/, bool _vsync)
|
2013-01-13 21:39:25 -05:00
|
|
|
{
|
2013-04-27 18:16:05 -04:00
|
|
|
eglSwapInterval(m_display, _vsync ? 1 : 0);
|
2013-01-13 21:39:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlContext::swap()
|
|
|
|
{
|
|
|
|
eglMakeCurrent(m_display, m_surface, m_surface, m_context);
|
|
|
|
eglSwapBuffers(m_display, m_surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlContext::import()
|
|
|
|
{
|
|
|
|
# if !BX_PLATFORM_EMSCRIPTEN
|
2013-12-08 01:01:32 -05:00
|
|
|
# define GL_IMPORT(_optional, _proto, _func, _import) \
|
2013-01-13 21:39:25 -05:00
|
|
|
{ \
|
2013-12-08 01:01:32 -05:00
|
|
|
_func = (_proto)eglGetProcAddress(#_import); \
|
|
|
|
BX_TRACE(#_import " 0x%08x", _func); \
|
|
|
|
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGLES context. eglGetProcAddress(\"%s\")", #_import); \
|
2013-01-13 21:39:25 -05:00
|
|
|
}
|
|
|
|
# include "glimports.h"
|
|
|
|
# undef GL_IMPORT
|
|
|
|
# endif // !BX_PLATFORM_EMSCRIPTEN
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace bgfx
|
|
|
|
|
|
|
|
# endif // BGFX_USE_EGL
|
|
|
|
#endif // (BGFX_CONFIG_RENDERER_OPENGLES2|BGFX_CONFIG_RENDERER_OPENGLES3|BGFX_CONFIG_RENDERER_OPENGL)
|