mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
6.5 KiB
171 lines
6.5 KiB
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015 |
|
Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
#include "WindowlessEglApplication.h" |
|
|
|
#include <Corrade/Utility/Assert.h> |
|
#include <Corrade/Utility/Debug.h> |
|
|
|
#include "Magnum/GL/Version.h" |
|
#include "Magnum/Platform/GLContext.h" |
|
|
|
#include "Implementation/Egl.h" |
|
|
|
namespace Magnum { namespace Platform { |
|
|
|
WindowlessEglContext::WindowlessEglContext(const Configuration& configuration, GLContext*) { |
|
/* Initialize */ |
|
_display = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
|
if(!eglInitialize(_display, nullptr, nullptr)) { |
|
Error() << "Platform::WindowlessEglApplication::tryCreateContext(): cannot initialize EGL:" << Implementation::eglErrorString(eglGetError()); |
|
return; |
|
} |
|
|
|
const EGLenum api = |
|
#ifndef MAGNUM_TARGET_GLES |
|
EGL_OPENGL_API |
|
#else |
|
EGL_OPENGL_ES_API |
|
#endif |
|
; |
|
if(!eglBindAPI(api)) { |
|
Error() << "Platform::WindowlessEglApplication::tryCreateContext(): cannot bind EGL API:" << Implementation::eglErrorString(eglGetError()); |
|
return; |
|
} |
|
|
|
/* Choose EGL config */ |
|
static const EGLint attribs[] = { |
|
EGL_SURFACE_TYPE, EGL_PBUFFER_BIT, |
|
#ifndef MAGNUM_TARGET_GLES |
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT, |
|
#elif defined(MAGNUM_TARGET_GLES2) || defined(CORRADE_TARGET_EMSCRIPTEN) |
|
/* Emscripten doesn't know about EGL_OPENGL_ES3_BIT_KHR for WebGL 2 and |
|
the whole thing is controlled by -s USE_WEBGL2=1 flag anyway, so it |
|
doesn't matter that we ask for ES2 on WebGL 2 as well. */ |
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, |
|
#elif defined(MAGNUM_TARGET_GLES3) |
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES3_BIT_KHR, |
|
#else |
|
#error unsupported OpenGL edition |
|
#endif |
|
EGL_NONE |
|
}; |
|
EGLConfig config; |
|
EGLint configCount; |
|
if(!eglChooseConfig(_display, attribs, &config, 1, &configCount)) { |
|
Error() << "Platform::WindowlessEglApplication::tryCreateContext(): cannot get EGL visual config:" << Implementation::eglErrorString(eglGetError()); |
|
return; |
|
} |
|
|
|
if(!configCount) { |
|
Error() << "Platform::WindowlessEglApplication::tryCreateContext(): no matching EGL visual config available"; |
|
return; |
|
} |
|
|
|
const EGLint attributes[] = { |
|
#ifdef MAGNUM_TARGET_GLES |
|
EGL_CONTEXT_CLIENT_VERSION, |
|
#if defined(MAGNUM_TARGET_GLES2) || defined(CORRADE_TARGET_EMSCRIPTEN) |
|
/* Emscripten doesn't know about version 3 for WebGL 2 and the |
|
whole thing is controlled by -s USE_WEBGL2=1 flag anyway, so it |
|
doesn't matter that we ask for ES2 on WebGL 2 as well. */ |
|
2, |
|
#elif defined(MAGNUM_TARGET_GLES3) |
|
3, |
|
#else |
|
#error unsupported OpenGL ES version |
|
#endif |
|
#endif |
|
#ifndef MAGNUM_TARGET_WEBGL |
|
EGL_CONTEXT_FLAGS_KHR, EGLint(configuration.flags()), |
|
#endif |
|
EGL_NONE |
|
}; |
|
|
|
#ifdef MAGNUM_TARGET_WEBGL |
|
static_cast<void>(configuration); |
|
#endif |
|
|
|
if(!(_context = eglCreateContext(_display, config, EGL_NO_CONTEXT, attributes))) { |
|
Error() << "Platform::WindowlessEglApplication::tryCreateContext(): cannot create EGL context:" << Implementation::eglErrorString(eglGetError()); |
|
return; |
|
} |
|
} |
|
|
|
WindowlessEglContext::WindowlessEglContext(WindowlessEglContext&& other): _display{other._display}, _context{other._context} { |
|
other._display = {}; |
|
other._context = {}; |
|
} |
|
|
|
WindowlessEglContext::~WindowlessEglContext() { |
|
if(_context) eglDestroyContext(_display, _context); |
|
if(_display) eglTerminate(_display); |
|
} |
|
|
|
WindowlessEglContext& WindowlessEglContext::operator=(WindowlessEglContext && other) { |
|
using std::swap; |
|
swap(other._display, _display); |
|
swap(other._context, _context); |
|
return *this; |
|
} |
|
|
|
bool WindowlessEglContext::makeCurrent() { |
|
if(eglMakeCurrent(_display, EGL_NO_SURFACE, EGL_NO_SURFACE, _context)) |
|
return true; |
|
|
|
Error() << "Platform::WindowlessEglApplication::tryCreateContext(): cannot make context current:" << Implementation::eglErrorString(eglGetError()); |
|
return false; |
|
} |
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
WindowlessEglApplication::WindowlessEglApplication(const Arguments& arguments): WindowlessEglApplication{arguments, Configuration{}} {} |
|
#endif |
|
|
|
WindowlessEglApplication::WindowlessEglApplication(const Arguments& arguments, const Configuration& configuration): WindowlessEglApplication{arguments, NoCreate} { |
|
createContext(configuration); |
|
} |
|
|
|
WindowlessEglApplication::WindowlessEglApplication(const Arguments& arguments, NoCreateT): _glContext{NoCreate}, _context{new GLContext{NoCreate, arguments.argc, arguments.argv}} {} |
|
|
|
void WindowlessEglApplication::createContext() { createContext({}); } |
|
|
|
void WindowlessEglApplication::createContext(const Configuration& configuration) { |
|
if(!tryCreateContext(configuration)) std::exit(1); |
|
} |
|
|
|
bool WindowlessEglApplication::tryCreateContext(const Configuration& configuration) { |
|
CORRADE_ASSERT(_context->version() == GL::Version::None, "Platform::WindowlessEglApplication::tryCreateContext(): context already created", false); |
|
|
|
WindowlessEglContext glContext{configuration, _context.get()}; |
|
if(!glContext.isCreated() || !glContext.makeCurrent() || !_context->tryCreate()) |
|
return false; |
|
|
|
_glContext = std::move(glContext); |
|
return true; |
|
} |
|
|
|
WindowlessEglApplication::~WindowlessEglApplication() = default; |
|
|
|
}}
|
|
|