1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
/*
* Copyright (C) 2012 Igalia, S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "GLContextEGL.h"
#if USE(EGL)
#include "GraphicsContextGL.h"
#include "Logging.h"
#include "PlatformDisplay.h"
#if USE(LIBEPOXY)
#include "EpoxyEGL.h"
#else
#include <EGL/egl.h>
#include <EGL/eglext.h>
#endif
#if USE(CAIRO)
#include <cairo.h>
#endif
#if USE(LIBEPOXY)
#include <epoxy/gl.h>
#elif USE(OPENGL_ES)
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#else
#include "OpenGLShims.h"
#endif
#include <wtf/Vector.h>
namespace WebCore {
#if USE(OPENGL_ES)
static const char* gEGLAPIName = "OpenGL ES";
static const EGLenum gEGLAPIVersion = EGL_OPENGL_ES_API;
#else
static const char* gEGLAPIName = "OpenGL";
static const EGLenum gEGLAPIVersion = EGL_OPENGL_API;
#endif
const char* GLContextEGL::errorString(int statusCode)
{
static_assert(sizeof(int) >= sizeof(EGLint), "EGLint must not be wider than int");
switch (statusCode) {
#define CASE_RETURN_STRING(name) case name: return #name
// https://www.khronos.org/registry/EGL/sdk/docs/man/html/eglGetError.xhtml
CASE_RETURN_STRING(EGL_SUCCESS);
CASE_RETURN_STRING(EGL_NOT_INITIALIZED);
CASE_RETURN_STRING(EGL_BAD_ACCESS);
CASE_RETURN_STRING(EGL_BAD_ALLOC);
CASE_RETURN_STRING(EGL_BAD_ATTRIBUTE);
CASE_RETURN_STRING(EGL_BAD_CONTEXT);
CASE_RETURN_STRING(EGL_BAD_CONFIG);
CASE_RETURN_STRING(EGL_BAD_CURRENT_SURFACE);
CASE_RETURN_STRING(EGL_BAD_DISPLAY);
CASE_RETURN_STRING(EGL_BAD_SURFACE);
CASE_RETURN_STRING(EGL_BAD_MATCH);
CASE_RETURN_STRING(EGL_BAD_PARAMETER);
CASE_RETURN_STRING(EGL_BAD_NATIVE_PIXMAP);
CASE_RETURN_STRING(EGL_BAD_NATIVE_WINDOW);
CASE_RETURN_STRING(EGL_CONTEXT_LOST);
#undef CASE_RETURN_STRING
default: return "Unknown EGL error";
}
}
const char* GLContextEGL::lastErrorString()
{
return errorString(eglGetError());
}
bool GLContextEGL::getEGLConfig(EGLDisplay display, EGLConfig* config, EGLSurfaceType surfaceType)
{
std::array<EGLint, 4> rgbaSize = { 8, 8, 8, 8 };
if (const char* environmentVariable = getenv("WEBKIT_EGL_PIXEL_LAYOUT")) {
if (!strcmp(environmentVariable, "RGB565"))
rgbaSize = { 5, 6, 5, 0 };
else
WTFLogAlways("Unknown pixel layout %s, falling back to RGBA8888", environmentVariable);
}
EGLint attributeList[] = {
#if USE(OPENGL_ES)
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
#else
EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
#endif
EGL_RED_SIZE, rgbaSize[0],
EGL_GREEN_SIZE, rgbaSize[1],
EGL_BLUE_SIZE, rgbaSize[2],
EGL_ALPHA_SIZE, rgbaSize[3],
EGL_STENCIL_SIZE, 8,
EGL_SURFACE_TYPE, EGL_NONE,
EGL_DEPTH_SIZE, 8,
EGL_NONE
};
switch (surfaceType) {
case GLContextEGL::PbufferSurface:
attributeList[13] = EGL_PBUFFER_BIT;
break;
case GLContextEGL::PixmapSurface:
attributeList[13] = EGL_PIXMAP_BIT;
break;
case GLContextEGL::WindowSurface:
case GLContextEGL::Surfaceless:
attributeList[13] = EGL_WINDOW_BIT;
break;
}
EGLint count;
if (!eglChooseConfig(display, attributeList, nullptr, 0, &count)) {
RELEASE_LOG_INFO(Compositing, "Cannot get count of available EGL configurations: %s.", lastErrorString());
return false;
}
EGLint numberConfigsReturned;
Vector<EGLConfig> configs(count);
if (!eglChooseConfig(display, attributeList, reinterpret_cast<EGLConfig*>(configs.data()), count, &numberConfigsReturned) || !numberConfigsReturned) {
RELEASE_LOG_INFO(Compositing, "Cannot get available EGL configurations: %s.", lastErrorString());
return false;
}
auto index = configs.findIf([&](EGLConfig value) {
EGLint redSize, greenSize, blueSize, alphaSize;
eglGetConfigAttrib(display, value, EGL_RED_SIZE, &redSize);
eglGetConfigAttrib(display, value, EGL_GREEN_SIZE, &greenSize);
eglGetConfigAttrib(display, value, EGL_BLUE_SIZE, &blueSize);
eglGetConfigAttrib(display, value, EGL_ALPHA_SIZE, &alphaSize);
return redSize == rgbaSize[0] && greenSize == rgbaSize[1]
&& blueSize == rgbaSize[2] && alphaSize == rgbaSize[3];
});
if (index != notFound) {
*config = configs[index];
return true;
}
RELEASE_LOG_INFO(Compositing, "Could not find suitable EGL configuration out of %zu checked.", configs.size());
return false;
}
std::unique_ptr<GLContextEGL> GLContextEGL::createWindowContext(GLNativeWindowType window, PlatformDisplay& platformDisplay, EGLContext sharingContext)
{
EGLDisplay display = platformDisplay.eglDisplay();
EGLConfig config;
if (!getEGLConfig(display, &config, WindowSurface)) {
RELEASE_LOG_INFO(Compositing, "Cannot obtain EGL window context configuration: %s\n", lastErrorString());
return nullptr;
}
EGLContext context = createContextForEGLVersion(platformDisplay, config, sharingContext);
if (context == EGL_NO_CONTEXT) {
RELEASE_LOG_INFO(Compositing, "Cannot create EGL window context: %s\n", lastErrorString());
return nullptr;
}
EGLSurface surface = EGL_NO_SURFACE;
switch (platformDisplay.type()) {
#if PLATFORM(X11)
case PlatformDisplay::Type::X11:
surface = createWindowSurfaceX11(display, config, window);
break;
#endif
#if PLATFORM(WAYLAND)
case PlatformDisplay::Type::Wayland:
surface = createWindowSurfaceWayland(display, config, window);
break;
#endif
#if USE(WPE_RENDERER)
case PlatformDisplay::Type::WPE:
surface = createWindowSurfaceWPE(display, config, window);
break;
#endif // USE(WPE_RENDERER)
}
if (surface == EGL_NO_SURFACE) {
RELEASE_LOG_INFO(Compositing, "Cannot create EGL window surface: %s. Retrying with fallback.", lastErrorString());
surface = eglCreateWindowSurface(display, config, static_cast<EGLNativeWindowType>(window), nullptr);
}
if (surface == EGL_NO_SURFACE) {
RELEASE_LOG_INFO(Compositing, "Cannot create EGL window surface: %s\n", lastErrorString());
eglDestroyContext(display, context);
return nullptr;
}
return std::unique_ptr<GLContextEGL>(new GLContextEGL(platformDisplay, context, surface, config, WindowSurface));
}
std::unique_ptr<GLContextEGL> GLContextEGL::createPbufferContext(PlatformDisplay& platformDisplay, EGLContext sharingContext)
{
EGLDisplay display = platformDisplay.eglDisplay();
EGLConfig config;
if (!getEGLConfig(display, &config, PbufferSurface)) {
RELEASE_LOG_INFO(Compositing, "Cannot obtain EGL Pbuffer configuration: %s\n", lastErrorString());
return nullptr;
}
EGLContext context = createContextForEGLVersion(platformDisplay, config, sharingContext);
if (context == EGL_NO_CONTEXT) {
RELEASE_LOG_INFO(Compositing, "Cannot create EGL Pbuffer context: %s\n", lastErrorString());
return nullptr;
}
static const int pbufferAttributes[] = { EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE };
EGLSurface surface = eglCreatePbufferSurface(display, config, pbufferAttributes);
if (surface == EGL_NO_SURFACE) {
RELEASE_LOG_INFO(Compositing, "Cannot create EGL Pbuffer surface: %s\n", lastErrorString());
eglDestroyContext(display, context);
return nullptr;
}
return std::unique_ptr<GLContextEGL>(new GLContextEGL(platformDisplay, context, surface, config, PbufferSurface));
}
std::unique_ptr<GLContextEGL> GLContextEGL::createSurfacelessContext(PlatformDisplay& platformDisplay, EGLContext sharingContext)
{
EGLDisplay display = platformDisplay.eglDisplay();
if (display == EGL_NO_DISPLAY) {
RELEASE_LOG_INFO(Compositing, "Cannot create surfaceless EGL context: invalid display (last error: %s)\n", lastErrorString());
return nullptr;
}
const char* extensions = eglQueryString(display, EGL_EXTENSIONS);
if (!GLContext::isExtensionSupported(extensions, "EGL_KHR_surfaceless_context") && !GLContext::isExtensionSupported(extensions, "EGL_KHR_surfaceless_opengl")) {
RELEASE_LOG_INFO(Compositing, "Cannot create surfaceless EGL context: required extensions missing.");
return nullptr;
}
EGLConfig config;
if (!getEGLConfig(display, &config, Surfaceless)) {
RELEASE_LOG_INFO(Compositing, "Cannot obtain EGL surfaceless configuration: %s\n", lastErrorString());
return nullptr;
}
EGLContext context = createContextForEGLVersion(platformDisplay, config, sharingContext);
if (context == EGL_NO_CONTEXT) {
RELEASE_LOG_INFO(Compositing, "Cannot create EGL surfaceless context: %s\n", lastErrorString());
return nullptr;
}
return std::unique_ptr<GLContextEGL>(new GLContextEGL(platformDisplay, context, EGL_NO_SURFACE, config, Surfaceless));
}
std::unique_ptr<GLContextEGL> GLContextEGL::createContext(GLNativeWindowType window, PlatformDisplay& platformDisplay)
{
if (platformDisplay.eglDisplay() == EGL_NO_DISPLAY) {
WTFLogAlways("Cannot create EGL context: invalid display (last error: %s)\n", lastErrorString());
return nullptr;
}
if (eglBindAPI(gEGLAPIVersion) == EGL_FALSE) {
WTFLogAlways("Cannot create EGL context: error binding %s API (%s)\n", gEGLAPIName, lastErrorString());
return nullptr;
}
EGLContext eglSharingContext = platformDisplay.sharingGLContext() ? static_cast<GLContextEGL*>(platformDisplay.sharingGLContext())->m_context : EGL_NO_CONTEXT;
auto context = window ? createWindowContext(window, platformDisplay, eglSharingContext) : nullptr;
if (!context)
context = createSurfacelessContext(platformDisplay, eglSharingContext);
if (!context) {
switch (platformDisplay.type()) {
#if PLATFORM(X11)
case PlatformDisplay::Type::X11:
context = createPixmapContext(platformDisplay, eglSharingContext);
break;
#endif
#if PLATFORM(WAYLAND)
case PlatformDisplay::Type::Wayland:
context = createWaylandContext(platformDisplay, eglSharingContext);
break;
#endif
#if USE(WPE_RENDERER)
case PlatformDisplay::Type::WPE:
context = createWPEContext(platformDisplay, eglSharingContext);
break;
#endif
}
}
if (!context) {
RELEASE_LOG_INFO(Compositing, "Could not create platform context: %s. Using Pbuffer as fallback.", lastErrorString());
context = createPbufferContext(platformDisplay, eglSharingContext);
if (!context)
RELEASE_LOG_INFO(Compositing, "Could not create Pbuffer context: %s.", lastErrorString());
}
if (!context)
WTFLogAlways("Could not create EGL context.");
return context;
}
std::unique_ptr<GLContextEGL> GLContextEGL::createSharingContext(PlatformDisplay& platformDisplay)
{
if (platformDisplay.eglDisplay() == EGL_NO_DISPLAY) {
WTFLogAlways("Cannot create EGL sharing context: invalid display (last error: %s)", lastErrorString());
return nullptr;
}
if (eglBindAPI(gEGLAPIVersion) == EGL_FALSE) {
WTFLogAlways("Cannot create EGL sharing context: error binding %s API (%s)\n", gEGLAPIName, lastErrorString());
return nullptr;
}
auto context = createSurfacelessContext(platformDisplay);
if (!context) {
switch (platformDisplay.type()) {
#if PLATFORM(X11)
case PlatformDisplay::Type::X11:
context = createPixmapContext(platformDisplay);
break;
#endif
#if PLATFORM(WAYLAND)
case PlatformDisplay::Type::Wayland:
context = createWaylandContext(platformDisplay);
break;
#endif
#if USE(WPE_RENDERER)
case PlatformDisplay::Type::WPE:
context = createWPEContext(platformDisplay);
break;
#endif
}
}
if (!context) {
RELEASE_LOG_INFO(Compositing, "Could not create platform context: %s. Using Pbuffer as fallback.", lastErrorString());
context = createPbufferContext(platformDisplay);
if (!context)
RELEASE_LOG_INFO(Compositing, "Could not create Pbuffer context: %s.", lastErrorString());
}
if (!context)
WTFLogAlways("Could not create EGL sharing context.");
return context;
}
GLContextEGL::GLContextEGL(PlatformDisplay& display, EGLContext context, EGLSurface surface, EGLConfig config, EGLSurfaceType type)
: GLContext(display)
, m_context(context)
, m_surface(surface)
, m_config(config)
, m_type(type)
{
ASSERT(type != PixmapSurface);
ASSERT(type == Surfaceless || surface != EGL_NO_SURFACE);
RELEASE_ASSERT(m_display.eglDisplay() != EGL_NO_DISPLAY);
RELEASE_ASSERT(context != EGL_NO_CONTEXT);
if (display.eglCheckVersion(1, 5)) {
m_eglCreateImage = reinterpret_cast<PFNEGLCREATEIMAGEPROC>(eglGetProcAddress("eglCreateImage"));
m_eglDestroyImage = reinterpret_cast<PFNEGLDESTROYIMAGEPROC>(eglGetProcAddress("eglDestroyImage"));
RELEASE_ASSERT(!m_eglCreateImage == !m_eglDestroyImage);
} else {
const char* extensions = eglQueryString(display.eglDisplay(), EGL_EXTENSIONS);
if (GLContext::isExtensionSupported(extensions, "EGL_KHR_image_base")) {
m_eglCreateImageKHR = reinterpret_cast<PFNEGLCREATEIMAGEKHRPROC>(eglGetProcAddress("eglCreateImageKHR"));
m_eglDestroyImageKHR = reinterpret_cast<PFNEGLDESTROYIMAGEKHRPROC>(eglGetProcAddress("eglDestroyImageKHR"));
}
RELEASE_ASSERT(!m_eglCreateImageKHR == !m_eglDestroyImageKHR);
}
}
GLContextEGL::~GLContextEGL()
{
EGLDisplay display = m_display.eglDisplay();
if (m_context) {
glBindFramebuffer(GL_FRAMEBUFFER, 0);
eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
eglDestroyContext(display, m_context);
}
if (m_surface)
eglDestroySurface(display, m_surface);
#if PLATFORM(WAYLAND)
destroyWaylandWindow();
#endif
#if USE(WPE_RENDERER)
destroyWPETarget();
#endif
}
EGLImage GLContextEGL::createImage(EGLenum target, EGLClientBuffer clientBuffer, const Vector<EGLAttrib>& attribList) const
{
if (m_eglCreateImage)
return m_eglCreateImage(m_display.eglDisplay(), attribList.isEmpty() ? m_context : EGL_NO_CONTEXT, target, clientBuffer, attribList.data());
if (m_eglCreateImageKHR) {
if (attribList.isEmpty())
return m_eglCreateImageKHR(m_display.eglDisplay(), m_context, target, clientBuffer, nullptr);
auto intAttribList = attribList.map<Vector<EGLint>>([] (EGLAttrib value) {
return value;
});
return m_eglCreateImageKHR(m_display.eglDisplay(), EGL_NO_CONTEXT, target, clientBuffer, intAttribList.data());
}
return EGL_NO_IMAGE;
}
bool GLContextEGL::destroyImage(EGLImage image) const
{
if (m_eglDestroyImage)
return m_eglDestroyImage(m_display.eglDisplay(), image);
if (m_eglDestroyImageKHR)
return m_eglDestroyImageKHR(m_display.eglDisplay(), image);
return false;
}
bool GLContextEGL::canRenderToDefaultFramebuffer()
{
return m_type == WindowSurface;
}
IntSize GLContextEGL::defaultFrameBufferSize()
{
if (!canRenderToDefaultFramebuffer())
return IntSize();
EGLDisplay display = m_display.eglDisplay();
EGLint width, height;
if (!eglQuerySurface(display, m_surface, EGL_WIDTH, &width)
|| !eglQuerySurface(display, m_surface, EGL_HEIGHT, &height))
return IntSize();
return IntSize(width, height);
}
EGLContext GLContextEGL::createContextForEGLVersion(PlatformDisplay& platformDisplay, EGLConfig config, EGLContext sharingContext)
{
static EGLint contextAttributes[7];
static bool contextAttributesInitialized = false;
if (!contextAttributesInitialized) {
contextAttributesInitialized = true;
#if USE(OPENGL_ES)
// GLES case. Not much to do here besides requesting a GLES2 version.
contextAttributes[0] = EGL_CONTEXT_CLIENT_VERSION;
contextAttributes[1] = 2;
contextAttributes[2] = EGL_NONE;
#else
// OpenGL case. We want to request an OpenGL version >= 3.2 with a core profile. If that's not possible,
// we'll use whatever is available. In order to request a concrete version of OpenGL we need EGL version
// 1.5 or EGL version 1.4 with the extension EGL_KHR_create_context.
EGLContext context = EGL_NO_CONTEXT;
if (platformDisplay.eglCheckVersion(1, 5)) {
contextAttributes[0] = EGL_CONTEXT_MAJOR_VERSION;
contextAttributes[1] = 3;
contextAttributes[2] = EGL_CONTEXT_MINOR_VERSION;
contextAttributes[3] = 2;
contextAttributes[4] = EGL_CONTEXT_OPENGL_PROFILE_MASK;
contextAttributes[5] = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT;
contextAttributes[6] = EGL_NONE;
// Try to create a context with this configuration.
context = eglCreateContext(platformDisplay.eglDisplay(), config, sharingContext, contextAttributes);
} else if (platformDisplay.eglCheckVersion(1, 4)) {
const char* extensions = eglQueryString(platformDisplay.eglDisplay(), EGL_EXTENSIONS);
if (GLContext::isExtensionSupported(extensions, "EGL_KHR_create_context")) {
contextAttributes[0] = EGL_CONTEXT_MAJOR_VERSION_KHR;
contextAttributes[1] = 3;
contextAttributes[2] = EGL_CONTEXT_MINOR_VERSION_KHR;
contextAttributes[3] = 2;
contextAttributes[4] = EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR;
contextAttributes[5] = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
contextAttributes[6] = EGL_NONE;
// Try to create a context with this configuration.
context = eglCreateContext(platformDisplay.eglDisplay(), config, sharingContext, contextAttributes);
}
}
// If the context creation worked, just return it.
if (context != EGL_NO_CONTEXT)
return context;
// Legacy case: the required EGL version is not present, or we haven't been able to create a >= 3.2 OpenGL
// context, so just request whatever is available.
contextAttributes[0] = EGL_NONE;
#endif
}
return eglCreateContext(platformDisplay.eglDisplay(), config, sharingContext, contextAttributes);
}
bool GLContextEGL::makeContextCurrent()
{
ASSERT(m_context);
GLContext::makeContextCurrent();
if (eglGetCurrentContext() == m_context)
return true;
return eglMakeCurrent(m_display.eglDisplay(), m_surface, m_surface, m_context);
}
void GLContextEGL::swapBuffers()
{
if (m_type == Surfaceless)
return;
ASSERT(m_surface);
eglSwapBuffers(m_display.eglDisplay(), m_surface);
}
void GLContextEGL::waitNative()
{
eglWaitNative(EGL_CORE_NATIVE_ENGINE);
}
void GLContextEGL::swapInterval(int interval)
{
ASSERT(m_surface);
eglSwapInterval(m_display.eglDisplay(), interval);
}
GCGLContext GLContextEGL::platformContext()
{
return m_context;
}
} // namespace WebCore
#endif // USE(EGL)
|