2013-07-03 07:12:39 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2013 Sebastian Dröge <slomo@circular-chaos.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-05-01 12:36:54 +00:00
|
|
|
#include <gmodule.h>
|
|
|
|
|
2013-08-29 14:28:04 +00:00
|
|
|
/* FIXME: Sharing contexts requires the EGLDisplay to be the same
|
2013-08-29 10:10:42 +00:00
|
|
|
* may need to box it.
|
|
|
|
*/
|
|
|
|
|
2013-08-21 04:05:56 +00:00
|
|
|
#include "gstglcontext_egl.h"
|
2015-06-16 07:49:34 +00:00
|
|
|
#include <gst/gl/egl/gstegl.h>
|
2016-01-28 05:39:07 +00:00
|
|
|
#include "../utils/opengl_versions.h"
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
#if GST_GL_HAVE_WINDOW_X11
|
2013-08-21 04:05:56 +00:00
|
|
|
#include "../x11/gstglwindow_x11.h"
|
2013-11-27 06:52:46 +00:00
|
|
|
#include <gst/gl/x11/gstgldisplay_x11.h>
|
2013-08-15 07:09:04 +00:00
|
|
|
#endif
|
2015-05-27 06:39:06 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_WAYLAND
|
|
|
|
#include "../wayland/gstglwindow_wayland_egl.h"
|
|
|
|
#endif
|
2013-08-15 07:09:04 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_WIN32
|
2013-08-21 04:05:56 +00:00
|
|
|
#include "../win32/gstglwindow_win32.h"
|
2013-08-15 07:09:04 +00:00
|
|
|
#endif
|
2015-03-23 15:43:01 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_DISPMANX
|
|
|
|
#include "../dispmanx/gstglwindow_dispmanx_egl.h"
|
|
|
|
#endif
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2015-02-12 13:58:14 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_gl_context_debug
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static gboolean gst_gl_context_egl_create_context (GstGLContext * context,
|
2013-08-29 10:10:42 +00:00
|
|
|
GstGLAPI gl_api, GstGLContext * other_context, GError ** error);
|
2013-08-15 07:09:04 +00:00
|
|
|
static void gst_gl_context_egl_destroy_context (GstGLContext * context);
|
|
|
|
static gboolean gst_gl_context_egl_choose_format (GstGLContext * context,
|
|
|
|
GError ** error);
|
|
|
|
|
|
|
|
static gboolean gst_gl_context_egl_activate (GstGLContext * context,
|
|
|
|
gboolean activate);
|
|
|
|
static void gst_gl_context_egl_swap_buffers (GstGLContext * context);
|
|
|
|
static guintptr gst_gl_context_egl_get_gl_context (GstGLContext * context);
|
|
|
|
static GstGLAPI gst_gl_context_egl_get_gl_api (GstGLContext * context);
|
2014-02-10 21:57:29 +00:00
|
|
|
static GstGLPlatform gst_gl_context_egl_get_gl_platform (GstGLContext *
|
|
|
|
context);
|
2014-05-14 07:59:52 +00:00
|
|
|
static gboolean gst_gl_context_egl_check_feature (GstGLContext * context,
|
|
|
|
const gchar * feature);
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstGLContextEGL, gst_gl_context_egl, GST_GL_TYPE_CONTEXT);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gl_context_egl_class_init (GstGLContextEGLClass * klass)
|
|
|
|
{
|
|
|
|
GstGLContextClass *context_class = (GstGLContextClass *) klass;
|
|
|
|
|
|
|
|
context_class->get_gl_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_get_gl_context);
|
|
|
|
context_class->activate = GST_DEBUG_FUNCPTR (gst_gl_context_egl_activate);
|
|
|
|
context_class->create_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_create_context);
|
|
|
|
context_class->destroy_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_destroy_context);
|
|
|
|
context_class->choose_format =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_choose_format);
|
|
|
|
context_class->swap_buffers =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_swap_buffers);
|
|
|
|
|
|
|
|
context_class->get_gl_api = GST_DEBUG_FUNCPTR (gst_gl_context_egl_get_gl_api);
|
2014-02-10 21:57:29 +00:00
|
|
|
context_class->get_gl_platform =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_get_gl_platform);
|
2013-08-15 07:09:04 +00:00
|
|
|
context_class->get_proc_address =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_get_proc_address);
|
2014-05-14 07:59:52 +00:00
|
|
|
context_class->check_feature =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_check_feature);
|
2014-10-28 06:31:37 +00:00
|
|
|
context_class->get_current_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_egl_get_current_context);
|
2013-08-15 07:09:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gl_context_egl_init (GstGLContextEGL * context)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
|
|
|
GstGLContextEGL *
|
2015-07-24 06:11:38 +00:00
|
|
|
gst_gl_context_egl_new (GstGLDisplay * display)
|
2013-08-15 07:09:04 +00:00
|
|
|
{
|
2015-07-24 06:11:38 +00:00
|
|
|
/* XXX: display type could theoretically be anything, as long as
|
|
|
|
* eglGetDisplay supports it. */
|
|
|
|
return g_object_new (GST_GL_TYPE_CONTEXT_EGL, NULL);
|
2013-08-15 07:09:04 +00:00
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2015-11-13 16:05:11 +00:00
|
|
|
const gchar *
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (EGLint err)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2016-01-28 03:31:33 +00:00
|
|
|
switch (err) {
|
2013-07-03 07:12:39 +00:00
|
|
|
case EGL_SUCCESS:
|
|
|
|
return "EGL_SUCCESS";
|
|
|
|
case EGL_BAD_DISPLAY:
|
|
|
|
return "EGL_BAD_DISPLAY";
|
|
|
|
case EGL_NOT_INITIALIZED:
|
|
|
|
return "EGL_NOT_INITIALIZED";
|
|
|
|
case EGL_BAD_ACCESS:
|
|
|
|
return "EGL_BAD_ACCESS";
|
|
|
|
case EGL_BAD_ALLOC:
|
|
|
|
return "EGL_BAD_ALLOC";
|
|
|
|
case EGL_BAD_ATTRIBUTE:
|
|
|
|
return "EGL_BAD_ATTRIBUTE";
|
|
|
|
case EGL_BAD_CONFIG:
|
|
|
|
return "EGL_BAD_CONFIG";
|
|
|
|
case EGL_BAD_CONTEXT:
|
|
|
|
return "EGL_BAD_CONTEXT";
|
|
|
|
case EGL_BAD_CURRENT_SURFACE:
|
|
|
|
return "EGL_BAD_CURRENT_SURFACE";
|
|
|
|
case EGL_BAD_MATCH:
|
|
|
|
return "EGL_BAD_MATCH";
|
|
|
|
case EGL_BAD_NATIVE_PIXMAP:
|
|
|
|
return "EGL_BAD_NATIVE_PIXMAP";
|
|
|
|
case EGL_BAD_NATIVE_WINDOW:
|
|
|
|
return "EGL_BAD_NATIVE_WINDOW";
|
|
|
|
case EGL_BAD_PARAMETER:
|
|
|
|
return "EGL_BAD_PARAMETER";
|
|
|
|
case EGL_BAD_SURFACE:
|
|
|
|
return "EGL_BAD_SURFACE";
|
|
|
|
default:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2013-08-15 07:09:04 +00:00
|
|
|
gst_gl_context_egl_choose_format (GstGLContext * context, GError ** error)
|
|
|
|
{
|
|
|
|
#if GST_GL_HAVE_WINDOW_X11
|
2015-10-19 04:15:30 +00:00
|
|
|
if (GST_IS_GL_WINDOW_X11 (context->window)) {
|
2013-08-15 07:09:04 +00:00
|
|
|
GstGLWindow *window = gst_gl_context_get_window (context);
|
|
|
|
GstGLWindowX11 *window_x11 = GST_GL_WINDOW_X11 (window);
|
|
|
|
gint ret;
|
|
|
|
|
|
|
|
window_x11->visual_info = g_new0 (XVisualInfo, 1);
|
|
|
|
ret = XMatchVisualInfo (window_x11->device, window_x11->screen_num,
|
|
|
|
window_x11->depth, TrueColor, window_x11->visual_info);
|
|
|
|
|
|
|
|
gst_object_unref (window);
|
|
|
|
|
|
|
|
if (ret == 0) {
|
2013-09-03 11:49:18 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR,
|
|
|
|
GST_GL_CONTEXT_ERROR_WRONG_CONFIG, "Failed to match XVisualInfo");
|
2013-08-15 07:09:04 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2016-01-28 05:39:07 +00:00
|
|
|
gst_gl_context_egl_choose_config (GstGLContextEGL * egl, GstGLAPI gl_api,
|
|
|
|
gint major, GError ** error)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2016-01-28 05:39:07 +00:00
|
|
|
gboolean create_context;
|
2013-07-03 07:12:39 +00:00
|
|
|
EGLint numConfigs;
|
|
|
|
gint i = 0;
|
|
|
|
EGLint config_attrib[20];
|
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
create_context =
|
|
|
|
gst_gl_check_extension ("EGL_KHR_create_context", egl->egl_exts);
|
|
|
|
/* silence unused warnings */
|
|
|
|
(void) create_context;
|
|
|
|
|
2013-08-29 14:28:04 +00:00
|
|
|
config_attrib[i++] = EGL_SURFACE_TYPE;
|
|
|
|
config_attrib[i++] = EGL_WINDOW_BIT;
|
|
|
|
config_attrib[i++] = EGL_RENDERABLE_TYPE;
|
2016-01-28 05:39:07 +00:00
|
|
|
if (gl_api & GST_GL_API_GLES2) {
|
|
|
|
if (major == 3) {
|
|
|
|
#if defined(EGL_KHR_create_context)
|
|
|
|
if (create_context) {
|
|
|
|
config_attrib[i++] = EGL_OPENGL_ES3_BIT_KHR;
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
config_attrib[i++] = EGL_OPENGL_ES2_BIT;
|
|
|
|
}
|
|
|
|
} else
|
2013-08-29 14:28:04 +00:00
|
|
|
config_attrib[i++] = EGL_OPENGL_BIT;
|
2014-03-18 00:08:50 +00:00
|
|
|
#if defined(USE_EGL_RPI) && GST_GL_HAVE_WINDOW_WAYLAND
|
2015-04-27 14:11:41 +00:00
|
|
|
/* The configurations with a=0 seems to be buggy whereas
|
2013-10-01 11:44:00 +00:00
|
|
|
* it works when using dispmanx directly */
|
|
|
|
config_attrib[i++] = EGL_ALPHA_SIZE;
|
|
|
|
config_attrib[i++] = 1;
|
|
|
|
#endif
|
2013-08-29 14:28:04 +00:00
|
|
|
config_attrib[i++] = EGL_DEPTH_SIZE;
|
|
|
|
config_attrib[i++] = 16;
|
2015-04-27 14:11:41 +00:00
|
|
|
config_attrib[i++] = EGL_RED_SIZE;
|
|
|
|
config_attrib[i++] = 1;
|
|
|
|
config_attrib[i++] = EGL_GREEN_SIZE;
|
|
|
|
config_attrib[i++] = 1;
|
|
|
|
config_attrib[i++] = EGL_BLUE_SIZE;
|
|
|
|
config_attrib[i++] = 1;
|
2013-08-29 14:28:04 +00:00
|
|
|
config_attrib[i++] = EGL_NONE;
|
2013-07-03 07:12:39 +00:00
|
|
|
|
|
|
|
if (eglChooseConfig (egl->egl_display, config_attrib,
|
|
|
|
&egl->egl_config, 1, &numConfigs)) {
|
2013-08-29 10:10:42 +00:00
|
|
|
GST_INFO ("config set: %" G_GUINTPTR_FORMAT ", %u",
|
|
|
|
(guintptr) egl->egl_config, (unsigned int) numConfigs);
|
2013-07-03 07:12:39 +00:00
|
|
|
} else {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR, GST_GL_CONTEXT_ERROR_WRONG_CONFIG,
|
2013-07-03 07:12:39 +00:00
|
|
|
"Failed to set window configuration: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2013-07-03 07:12:39 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
failure:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
static EGLContext
|
|
|
|
_create_context_with_flags (GstGLContextEGL * egl, EGLContext share_context,
|
|
|
|
GstGLAPI gl_api, gint major, gint minor, gint contextFlags,
|
|
|
|
gint profileMask)
|
|
|
|
{
|
|
|
|
gboolean create_context;
|
|
|
|
#define N_ATTRIBS 20
|
|
|
|
gint attribs[N_ATTRIBS];
|
|
|
|
gint n = 0;
|
|
|
|
|
|
|
|
/* fail creation of apis/versions/flags that require EGL_KHR_create_context
|
|
|
|
* if the extension doesn't exist, namely:0
|
|
|
|
*
|
|
|
|
* - profile mask
|
|
|
|
* - context flags
|
|
|
|
* - GL3 > 3.1
|
|
|
|
* - GLES2 && minor > 0
|
|
|
|
*/
|
|
|
|
create_context =
|
|
|
|
gst_gl_check_extension ("EGL_KHR_create_context", egl->egl_exts);
|
|
|
|
(void) create_context;
|
|
|
|
if (!create_context && (profileMask || contextFlags
|
|
|
|
|| ((gl_api & GST_GL_API_OPENGL3)
|
|
|
|
&& GST_GL_CHECK_GL_VERSION (major, minor, 3, 2))
|
|
|
|
|| ((gl_api & GST_GL_API_GLES2) && minor > 0))) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (egl, "attempting to create OpenGL%s context version %d.%d "
|
|
|
|
"flags %x profile %x", gl_api & GST_GL_API_GLES2 ? " ES" : "", major,
|
|
|
|
minor, contextFlags, profileMask);
|
|
|
|
|
|
|
|
#if defined(EGL_KHR_create_context)
|
|
|
|
if (create_context) {
|
|
|
|
if (major) {
|
|
|
|
attribs[n++] = EGL_CONTEXT_MAJOR_VERSION_KHR;
|
|
|
|
attribs[n++] = major;
|
|
|
|
}
|
|
|
|
if (minor) {
|
|
|
|
attribs[n++] = EGL_CONTEXT_MINOR_VERSION_KHR;
|
|
|
|
attribs[n++] = minor;
|
|
|
|
}
|
|
|
|
if (contextFlags) {
|
|
|
|
attribs[n++] = EGL_CONTEXT_FLAGS_KHR;
|
|
|
|
attribs[n++] = contextFlags;
|
|
|
|
}
|
|
|
|
if (profileMask) {
|
|
|
|
attribs[n++] = EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR;
|
|
|
|
attribs[n++] = profileMask;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
attribs[n++] = EGL_CONTEXT_CLIENT_VERSION;
|
|
|
|
attribs[n++] = major;
|
|
|
|
}
|
|
|
|
attribs[n++] = EGL_NONE;
|
|
|
|
|
|
|
|
g_assert (n < N_ATTRIBS);
|
|
|
|
#undef N_ATTRIBS
|
|
|
|
|
|
|
|
return eglCreateContext (egl->egl_display, egl->egl_config, share_context,
|
|
|
|
attribs);
|
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static gboolean
|
|
|
|
gst_gl_context_egl_create_context (GstGLContext * context,
|
2013-08-29 10:10:42 +00:00
|
|
|
GstGLAPI gl_api, GstGLContext * other_context, GError ** error)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
GstGLContextEGL *egl;
|
|
|
|
GstGLWindow *window = NULL;
|
2014-03-17 09:56:39 +00:00
|
|
|
EGLNativeWindowType window_handle = (EGLNativeWindowType) 0;
|
2013-07-03 07:12:39 +00:00
|
|
|
EGLint majorVersion;
|
|
|
|
EGLint minorVersion;
|
2013-07-24 11:34:20 +00:00
|
|
|
gboolean need_surface = TRUE;
|
2013-08-29 10:10:42 +00:00
|
|
|
guintptr external_gl_context = 0;
|
2014-02-10 21:57:29 +00:00
|
|
|
GstGLDisplay *display;
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
egl = GST_GL_CONTEXT_EGL (context);
|
|
|
|
window = gst_gl_context_get_window (context);
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2015-02-12 13:58:14 +00:00
|
|
|
GST_DEBUG_OBJECT (context, "Creating EGL context");
|
|
|
|
|
2013-08-29 10:10:42 +00:00
|
|
|
if (other_context) {
|
2014-02-10 21:57:29 +00:00
|
|
|
if (gst_gl_context_get_gl_platform (other_context) != GST_GL_PLATFORM_EGL) {
|
2013-09-03 11:49:18 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR,
|
|
|
|
GST_GL_CONTEXT_ERROR_WRONG_CONFIG,
|
2013-08-29 10:10:42 +00:00
|
|
|
"Cannot share context with non-EGL context");
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
external_gl_context = gst_gl_context_get_gl_context (other_context);
|
|
|
|
}
|
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
if ((gl_api & (GST_GL_API_OPENGL | GST_GL_API_OPENGL3 | GST_GL_API_GLES2)) ==
|
|
|
|
GST_GL_API_NONE) {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR, GST_GL_CONTEXT_ERROR_WRONG_API,
|
2013-08-29 10:10:42 +00:00
|
|
|
"EGL supports opengl or gles2");
|
2013-07-03 07:12:39 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2013-11-27 06:52:46 +00:00
|
|
|
display = gst_gl_context_get_display (context);
|
2014-03-17 09:56:39 +00:00
|
|
|
|
|
|
|
if (display->type == GST_GL_DISPLAY_TYPE_EGL) {
|
|
|
|
egl->egl_display = (EGLDisplay) gst_gl_display_get_handle (display);
|
|
|
|
} else {
|
|
|
|
guintptr native_display = gst_gl_display_get_handle (display);
|
|
|
|
|
|
|
|
if (!native_display) {
|
|
|
|
GstGLWindow *window = NULL;
|
|
|
|
GST_WARNING ("Failed to get a global display handle, falling back to "
|
|
|
|
"per-window display handles. Context sharing may not work");
|
|
|
|
|
|
|
|
if (other_context)
|
|
|
|
window = gst_gl_context_get_window (other_context);
|
|
|
|
if (!window)
|
|
|
|
window = gst_gl_context_get_window (context);
|
|
|
|
if (window) {
|
|
|
|
native_display = gst_gl_window_get_display (window);
|
|
|
|
gst_object_unref (window);
|
|
|
|
}
|
2013-11-27 06:52:46 +00:00
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2014-03-17 09:56:39 +00:00
|
|
|
egl->egl_display = eglGetDisplay ((EGLNativeDisplayType) native_display);
|
|
|
|
}
|
2013-11-27 06:52:46 +00:00
|
|
|
gst_object_unref (display);
|
|
|
|
|
2013-07-03 07:12:39 +00:00
|
|
|
if (eglInitialize (egl->egl_display, &majorVersion, &minorVersion)) {
|
|
|
|
GST_INFO ("egl initialized, version: %d.%d", majorVersion, minorVersion);
|
|
|
|
} else {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR,
|
|
|
|
GST_GL_CONTEXT_ERROR_RESOURCE_UNAVAILABLE,
|
2016-01-28 03:31:33 +00:00
|
|
|
"Failed to initialize egl: %s",
|
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2013-07-03 07:12:39 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
egl->egl_exts = eglQueryString (egl->egl_display, EGL_EXTENSIONS);
|
|
|
|
|
|
|
|
if (gl_api & (GST_GL_API_OPENGL | GST_GL_API_OPENGL3)) {
|
|
|
|
GstGLAPI chosen_gl_api = 0;
|
|
|
|
gint i;
|
|
|
|
|
2013-07-03 07:12:39 +00:00
|
|
|
/* egl + opengl only available with EGL 1.4+ */
|
|
|
|
if (majorVersion == 1 && minorVersion <= 3) {
|
|
|
|
if ((gl_api & ~GST_GL_API_OPENGL) == GST_GL_API_NONE) {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR, GST_GL_CONTEXT_ERROR_OLD_LIBS,
|
2013-07-03 07:12:39 +00:00
|
|
|
"EGL version (%i.%i) too old for OpenGL support, (needed at least 1.4)",
|
|
|
|
majorVersion, minorVersion);
|
|
|
|
goto failure;
|
|
|
|
} else {
|
|
|
|
GST_WARNING
|
|
|
|
("EGL version (%i.%i) too old for OpenGL support, (needed at least 1.4)",
|
|
|
|
majorVersion, minorVersion);
|
|
|
|
if (gl_api & GST_GL_API_GLES2) {
|
|
|
|
goto try_gles2;
|
|
|
|
} else {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR,
|
|
|
|
GST_GL_CONTEXT_ERROR_WRONG_CONFIG,
|
2013-07-03 07:12:39 +00:00
|
|
|
"Failed to choose a suitable OpenGL API");
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!eglBindAPI (EGL_OPENGL_API)) {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR, GST_GL_CONTEXT_ERROR_FAILED,
|
2013-08-29 10:10:42 +00:00
|
|
|
"Failed to bind OpenGL API: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2013-07-03 07:12:39 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
GST_INFO ("Bound OpenGL");
|
|
|
|
|
|
|
|
/* api, version only matters for gles */
|
|
|
|
if (!gst_gl_context_egl_choose_config (egl, GST_GL_API_OPENGL, 0, error)) {
|
|
|
|
g_assert (error == NULL || *error != NULL);
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (opengl_versions); i++) {
|
|
|
|
gint profileMask = 0;
|
|
|
|
gint contextFlags = 0;
|
|
|
|
|
|
|
|
if (GST_GL_CHECK_GL_VERSION (opengl_versions[i].major,
|
|
|
|
opengl_versions[i].minor, 3, 2)) {
|
|
|
|
/* skip gl3 contexts if requested */
|
|
|
|
if ((gl_api & GST_GL_API_OPENGL3) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
chosen_gl_api = GST_GL_API_OPENGL3;
|
|
|
|
#if defined(EGL_KHR_create_context)
|
|
|
|
profileMask |= EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
|
|
|
|
contextFlags |= EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR;
|
|
|
|
#endif
|
|
|
|
} else if (opengl_versions[i].major == 3 && opengl_versions[i].minor == 1) {
|
|
|
|
/* skip 3.1, the implementation is free to give us either a core or a
|
|
|
|
* compatibility context (we have no say) */
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
/* skip legacy contexts if requested */
|
|
|
|
if ((gl_api & GST_GL_API_OPENGL) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
chosen_gl_api = GST_GL_API_OPENGL;
|
|
|
|
}
|
|
|
|
|
|
|
|
egl->egl_context =
|
|
|
|
_create_context_with_flags (egl, (EGLContext) external_gl_context,
|
|
|
|
chosen_gl_api, opengl_versions[i].major,
|
|
|
|
opengl_versions[i].minor, contextFlags, profileMask);
|
|
|
|
|
|
|
|
if (egl->egl_context)
|
|
|
|
break;
|
|
|
|
|
|
|
|
#if defined(EGL_KHR_create_context)
|
|
|
|
profileMask &= ~EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR;
|
|
|
|
|
|
|
|
egl->egl_context =
|
|
|
|
_create_context_with_flags (egl, (EGLContext) external_gl_context,
|
|
|
|
chosen_gl_api, opengl_versions[i].major,
|
|
|
|
opengl_versions[i].minor, contextFlags, profileMask);
|
|
|
|
|
|
|
|
if (egl->egl_context)
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
egl->gl_api = chosen_gl_api;
|
2013-07-03 07:12:39 +00:00
|
|
|
} else if (gl_api & GST_GL_API_GLES2) {
|
2016-01-28 05:39:07 +00:00
|
|
|
gint i;
|
|
|
|
|
2013-07-03 07:12:39 +00:00
|
|
|
try_gles2:
|
|
|
|
if (!eglBindAPI (EGL_OPENGL_ES_API)) {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR, GST_GL_CONTEXT_ERROR_FAILED,
|
|
|
|
"Failed to bind OpenGL|ES API: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2013-07-03 07:12:39 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
GST_INFO ("Bound OpenGL|ES");
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (gles2_versions); i++) {
|
|
|
|
gint profileMask = 0;
|
|
|
|
gint contextFlags = 0;
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
if (!gst_gl_context_egl_choose_config (egl, GST_GL_API_GLES2,
|
|
|
|
gles2_versions[i].major, error)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#if defined(EGL_KHR_create_context)
|
|
|
|
/* try a debug context */
|
|
|
|
contextFlags |= EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR;
|
2014-08-22 06:49:10 +00:00
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
egl->egl_context =
|
|
|
|
_create_context_with_flags (egl, (EGLContext) external_gl_context,
|
|
|
|
GST_GL_API_GLES2, gles2_versions[i].major,
|
|
|
|
gles2_versions[i].minor, contextFlags, profileMask);
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2016-01-28 05:39:07 +00:00
|
|
|
if (egl->egl_context)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* try without a debug context */
|
|
|
|
contextFlags &= ~EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR;
|
2014-08-20 13:24:12 +00:00
|
|
|
#endif
|
2016-01-28 05:39:07 +00:00
|
|
|
|
|
|
|
egl->egl_context =
|
|
|
|
_create_context_with_flags (egl, (EGLContext) external_gl_context,
|
|
|
|
GST_GL_API_GLES2, gles2_versions[i].major,
|
|
|
|
gles2_versions[i].minor, contextFlags, profileMask);
|
|
|
|
|
|
|
|
if (egl->egl_context)
|
|
|
|
break;
|
2014-08-22 06:49:10 +00:00
|
|
|
}
|
2016-01-28 05:39:07 +00:00
|
|
|
egl->gl_api = GST_GL_API_GLES2;
|
2014-08-22 06:49:10 +00:00
|
|
|
}
|
|
|
|
|
2013-07-03 07:12:39 +00:00
|
|
|
if (egl->egl_context != EGL_NO_CONTEXT) {
|
2013-08-29 10:10:42 +00:00
|
|
|
GST_INFO ("gl context created: %" G_GUINTPTR_FORMAT,
|
|
|
|
(guintptr) egl->egl_context);
|
2013-07-03 07:12:39 +00:00
|
|
|
} else {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR,
|
|
|
|
GST_GL_CONTEXT_ERROR_CREATE_CONTEXT,
|
2013-07-03 07:12:39 +00:00
|
|
|
"Failed to create a OpenGL context: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2013-07-03 07:12:39 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
2015-07-07 12:35:47 +00:00
|
|
|
/* FIXME do we want a window vfunc ? */
|
2013-08-15 07:09:04 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_X11
|
2015-10-19 04:15:30 +00:00
|
|
|
if (GST_IS_GL_WINDOW_X11 (context->window)) {
|
2015-07-07 12:35:47 +00:00
|
|
|
gst_gl_window_x11_create_window ((GstGLWindowX11 *) context->window);
|
|
|
|
}
|
2013-08-15 07:09:04 +00:00
|
|
|
#endif
|
2015-07-07 12:35:47 +00:00
|
|
|
|
|
|
|
if (other_context == NULL) {
|
2015-05-27 06:39:06 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_WAYLAND
|
2015-10-19 04:15:30 +00:00
|
|
|
if (GST_IS_GL_WINDOW_WAYLAND_EGL (context->window)) {
|
2015-05-27 06:39:06 +00:00
|
|
|
gst_gl_window_wayland_egl_create_window ((GstGLWindowWaylandEGL *)
|
|
|
|
context->window);
|
|
|
|
}
|
|
|
|
#endif
|
2013-08-15 07:09:04 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_WIN32
|
2015-10-19 04:15:30 +00:00
|
|
|
if (GST_IS_GL_WINDOW_WIN32 (context->window)) {
|
2013-08-29 10:10:42 +00:00
|
|
|
gst_gl_window_win32_create_window ((GstGLWindowWin32 *) context->window);
|
|
|
|
}
|
2015-03-23 15:43:01 +00:00
|
|
|
#endif
|
|
|
|
#if GST_GL_HAVE_WINDOW_DISPMANX
|
2015-10-19 04:15:30 +00:00
|
|
|
if (GST_IS_GL_WINDOW_DISPMANX_EGL (context->window)) {
|
2015-03-23 15:43:01 +00:00
|
|
|
gst_gl_window_dispmanx_egl_create_window ((GstGLWindowDispmanxEGL *)
|
|
|
|
context->window);
|
|
|
|
}
|
2013-08-15 07:09:04 +00:00
|
|
|
#endif
|
2013-08-29 10:10:42 +00:00
|
|
|
}
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-03-17 09:56:39 +00:00
|
|
|
if (window)
|
|
|
|
window_handle =
|
|
|
|
(EGLNativeWindowType) gst_gl_window_get_window_handle (window);
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
if (window_handle) {
|
2015-02-24 12:58:26 +00:00
|
|
|
GST_DEBUG ("Creating EGLSurface from window_handle %p",
|
|
|
|
(void *) window_handle);
|
2013-07-15 16:01:55 +00:00
|
|
|
egl->egl_surface =
|
2013-08-15 07:09:04 +00:00
|
|
|
eglCreateWindowSurface (egl->egl_display, egl->egl_config,
|
|
|
|
window_handle, NULL);
|
2015-02-24 12:58:26 +00:00
|
|
|
/* Store window handle for later comparision */
|
|
|
|
egl->window_handle = window_handle;
|
2016-01-28 05:39:07 +00:00
|
|
|
} else if (!gst_gl_check_extension ("EGL_KHR_surfaceless_context",
|
|
|
|
egl->egl_exts)) {
|
2013-07-15 16:01:55 +00:00
|
|
|
EGLint surface_attrib[7];
|
|
|
|
gint j = 0;
|
|
|
|
|
2015-02-24 12:58:26 +00:00
|
|
|
GST_DEBUG ("Surfaceless context, creating PBufferSurface");
|
2013-07-15 16:01:55 +00:00
|
|
|
/* FIXME: Width/height doesn't seem to matter but we can't leave them
|
|
|
|
* at 0, otherwise X11 complains about BadValue */
|
|
|
|
surface_attrib[j++] = EGL_WIDTH;
|
|
|
|
surface_attrib[j++] = 1;
|
|
|
|
surface_attrib[j++] = EGL_HEIGHT;
|
|
|
|
surface_attrib[j++] = 1;
|
|
|
|
surface_attrib[j++] = EGL_LARGEST_PBUFFER;
|
|
|
|
surface_attrib[j++] = EGL_TRUE;
|
|
|
|
surface_attrib[j++] = EGL_NONE;
|
|
|
|
|
|
|
|
egl->egl_surface =
|
|
|
|
eglCreatePbufferSurface (egl->egl_display, egl->egl_config,
|
|
|
|
surface_attrib);
|
2013-07-24 11:34:20 +00:00
|
|
|
} else {
|
2015-02-24 12:58:26 +00:00
|
|
|
GST_DEBUG ("No surface/handle !");
|
2013-07-24 11:34:20 +00:00
|
|
|
egl->egl_surface = EGL_NO_SURFACE;
|
|
|
|
need_surface = FALSE;
|
2013-07-15 16:01:55 +00:00
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2013-07-24 11:34:20 +00:00
|
|
|
if (need_surface) {
|
|
|
|
if (egl->egl_surface != EGL_NO_SURFACE) {
|
|
|
|
GST_INFO ("surface created");
|
|
|
|
} else {
|
2013-08-15 07:09:04 +00:00
|
|
|
g_set_error (error, GST_GL_CONTEXT_ERROR, GST_GL_CONTEXT_ERROR_FAILED,
|
2013-07-24 11:34:20 +00:00
|
|
|
"Failed to create window surface: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2013-07-24 11:34:20 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 07:59:52 +00:00
|
|
|
/* EGLImage functions */
|
|
|
|
if (GST_GL_CHECK_GL_VERSION (majorVersion, minorVersion, 1, 5)) {
|
|
|
|
egl->eglCreateImage = gst_gl_context_get_proc_address (context,
|
|
|
|
"eglCreateImage");
|
|
|
|
egl->eglDestroyImage = gst_gl_context_get_proc_address (context,
|
|
|
|
"eglDestroyImage");
|
2016-01-28 05:39:07 +00:00
|
|
|
} else if (gst_gl_check_extension ("EGL_KHR_image_base", egl->egl_exts)) {
|
2014-05-14 07:59:52 +00:00
|
|
|
egl->eglCreateImage = gst_gl_context_get_proc_address (context,
|
|
|
|
"eglCreateImageKHR");
|
|
|
|
egl->eglDestroyImage = gst_gl_context_get_proc_address (context,
|
|
|
|
"eglDestroyImageKHR");
|
|
|
|
}
|
|
|
|
if (egl->eglCreateImage == NULL || egl->eglDestroyImage == NULL) {
|
|
|
|
egl->eglCreateImage = NULL;
|
|
|
|
egl->eglDestroyImage = NULL;
|
|
|
|
}
|
|
|
|
|
2014-03-17 09:56:39 +00:00
|
|
|
if (window)
|
|
|
|
gst_object_unref (window);
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
return TRUE;
|
2013-07-03 07:12:39 +00:00
|
|
|
|
|
|
|
failure:
|
2013-08-15 07:09:04 +00:00
|
|
|
if (window)
|
|
|
|
gst_object_unref (window);
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
return FALSE;
|
2013-07-03 07:12:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
|
|
|
gst_gl_context_egl_destroy_context (GstGLContext * context)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
GstGLContextEGL *egl;
|
|
|
|
|
|
|
|
egl = GST_GL_CONTEXT_EGL (context);
|
|
|
|
|
|
|
|
gst_gl_context_egl_activate (context, FALSE);
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2015-02-24 12:58:26 +00:00
|
|
|
if (egl->egl_surface) {
|
2014-05-27 00:47:25 +00:00
|
|
|
eglDestroySurface (egl->egl_display, egl->egl_surface);
|
2015-02-24 12:58:26 +00:00
|
|
|
egl->egl_surface = EGL_NO_SURFACE;
|
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2015-02-24 12:58:26 +00:00
|
|
|
if (egl->egl_context) {
|
2013-07-03 07:12:39 +00:00
|
|
|
eglDestroyContext (egl->egl_display, egl->egl_context);
|
2015-02-24 12:58:26 +00:00
|
|
|
egl->egl_context = NULL;
|
|
|
|
}
|
|
|
|
egl->window_handle = 0;
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2014-03-17 09:56:39 +00:00
|
|
|
eglReleaseThread ();
|
2013-07-03 07:12:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static gboolean
|
|
|
|
gst_gl_context_egl_activate (GstGLContext * context, gboolean activate)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
GstGLContextEGL *egl;
|
2013-07-03 07:12:39 +00:00
|
|
|
gboolean result;
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
egl = GST_GL_CONTEXT_EGL (context);
|
|
|
|
|
2015-02-24 12:58:26 +00:00
|
|
|
if (activate) {
|
|
|
|
GstGLWindow *window = gst_gl_context_get_window (context);
|
|
|
|
EGLNativeWindowType handle = 0;
|
|
|
|
/* Check if the backing handle changed */
|
|
|
|
if (window) {
|
|
|
|
handle = (EGLNativeWindowType) gst_gl_window_get_window_handle (window);
|
|
|
|
gst_object_unref (window);
|
|
|
|
}
|
|
|
|
if (handle && handle != egl->window_handle) {
|
|
|
|
GST_DEBUG_OBJECT (context,
|
|
|
|
"Handle changed (have:%p, now:%p), switching surface",
|
|
|
|
(void *) egl->window_handle, (void *) handle);
|
|
|
|
if (egl->egl_surface) {
|
2015-04-17 12:24:28 +00:00
|
|
|
result = eglDestroySurface (egl->egl_display, egl->egl_surface);
|
2015-02-24 12:58:26 +00:00
|
|
|
egl->egl_surface = EGL_NO_SURFACE;
|
2015-04-17 12:24:28 +00:00
|
|
|
if (!result) {
|
|
|
|
GST_ERROR_OBJECT (context, "Failed to destroy old window surface: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2015-04-17 12:24:28 +00:00
|
|
|
goto done;
|
|
|
|
}
|
2015-02-24 12:58:26 +00:00
|
|
|
}
|
|
|
|
egl->egl_surface =
|
|
|
|
eglCreateWindowSurface (egl->egl_display, egl->egl_config, handle,
|
|
|
|
NULL);
|
|
|
|
egl->window_handle = handle;
|
2015-04-16 08:42:45 +00:00
|
|
|
|
|
|
|
if (egl->egl_surface == EGL_NO_SURFACE) {
|
|
|
|
GST_ERROR_OBJECT (context, "Failed to create window surface: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2015-04-16 08:42:45 +00:00
|
|
|
result = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
2015-02-24 12:58:26 +00:00
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
result = eglMakeCurrent (egl->egl_display, egl->egl_surface,
|
|
|
|
egl->egl_surface, egl->egl_context);
|
2016-01-28 03:31:33 +00:00
|
|
|
} else {
|
2013-07-03 07:12:39 +00:00
|
|
|
result = eglMakeCurrent (egl->egl_display, EGL_NO_SURFACE,
|
|
|
|
EGL_NO_SURFACE, EGL_NO_CONTEXT);
|
2016-01-28 03:31:33 +00:00
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2015-04-16 08:42:45 +00:00
|
|
|
if (!result) {
|
|
|
|
GST_ERROR_OBJECT (context,
|
|
|
|
"Failed to bind context to the current rendering thread: %s",
|
2016-01-28 03:31:33 +00:00
|
|
|
gst_gl_context_egl_get_error_string (eglGetError ()));
|
2015-04-16 08:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2013-07-03 07:12:39 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static guintptr
|
|
|
|
gst_gl_context_egl_get_gl_context (GstGLContext * context)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
return (guintptr) GST_GL_CONTEXT_EGL (context)->egl_context;
|
2013-07-03 07:12:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
|
|
|
gst_gl_context_egl_swap_buffers (GstGLContext * context)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
GstGLContextEGL *egl;
|
|
|
|
|
|
|
|
egl = GST_GL_CONTEXT_EGL (context);
|
|
|
|
|
2016-01-29 01:45:57 +00:00
|
|
|
eglSwapBuffers (egl->egl_display, egl->egl_surface);
|
2013-07-03 07:12:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static GstGLAPI
|
|
|
|
gst_gl_context_egl_get_gl_api (GstGLContext * context)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
return GST_GL_CONTEXT_EGL (context)->gl_api;
|
2013-07-03 07:12:39 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 21:57:29 +00:00
|
|
|
static GstGLPlatform
|
|
|
|
gst_gl_context_egl_get_gl_platform (GstGLContext * context)
|
|
|
|
{
|
|
|
|
return GST_GL_PLATFORM_EGL;
|
|
|
|
}
|
|
|
|
|
2014-05-01 12:36:54 +00:00
|
|
|
static GModule *module_egl;
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
load_egl_module (gpointer user_data)
|
|
|
|
{
|
|
|
|
#ifdef GST_GL_LIBEGL_MODULE_NAME
|
|
|
|
module_egl = g_module_open (GST_GL_LIBEGL_MODULE_NAME, G_MODULE_BIND_LAZY);
|
|
|
|
#else
|
|
|
|
/* On Linux the .so is only in -dev packages, try with a real soname
|
|
|
|
* Proper compilers will optimize away the strcmp */
|
2015-10-20 17:44:50 +00:00
|
|
|
if (g_strcmp0 (G_MODULE_SUFFIX, "so") == 0)
|
2014-05-01 12:36:54 +00:00
|
|
|
module_egl = g_module_open ("libEGL.so.1", G_MODULE_BIND_LAZY);
|
2014-05-29 14:59:28 +00:00
|
|
|
|
|
|
|
/* This automatically handles the suffix and even .la files */
|
|
|
|
if (!module_egl)
|
|
|
|
module_egl = g_module_open ("libEGL", G_MODULE_BIND_LAZY);
|
2014-05-01 12:36:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-30 05:48:00 +00:00
|
|
|
gpointer
|
2015-07-18 07:08:36 +00:00
|
|
|
gst_gl_context_egl_get_proc_address (GstGLAPI gl_api, const gchar * name)
|
2013-07-03 07:12:39 +00:00
|
|
|
{
|
2013-10-01 13:47:54 +00:00
|
|
|
gpointer result = NULL;
|
2014-05-01 12:36:54 +00:00
|
|
|
static GOnce g_once = G_ONCE_INIT;
|
|
|
|
|
2015-07-05 23:52:06 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#if GST_GL_HAVE_OPENGL && !defined(GST_GL_LIBGL_MODULE_NAME)
|
|
|
|
if (!result && (gl_api & (GST_GL_API_OPENGL | GST_GL_API_OPENGL3))) {
|
|
|
|
static GModule *module_opengl = NULL;
|
|
|
|
if (g_once_init_enter (&module_opengl)) {
|
|
|
|
GModule *setup_module_opengl =
|
|
|
|
g_module_open ("libGL.dylib", G_MODULE_BIND_LAZY);
|
|
|
|
g_once_init_leave (&module_opengl, setup_module_opengl);
|
|
|
|
}
|
|
|
|
if (module_opengl)
|
|
|
|
g_module_symbol (module_opengl, name, &result);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if GST_GL_HAVE_GLES2 && !defined(GST_GL_LIBGLESV2_MODULE_NAME)
|
|
|
|
if (!result && (gl_api & (GST_GL_API_GLES2))) {
|
|
|
|
static GModule *module_gles2 = NULL;
|
|
|
|
if (g_once_init_enter (&module_gles2)) {
|
|
|
|
GModule *setup_module_gles2 =
|
|
|
|
g_module_open ("libGLESv2.dylib", G_MODULE_BIND_LAZY);
|
|
|
|
g_once_init_leave (&module_gles2, setup_module_gles2);
|
|
|
|
}
|
|
|
|
if (module_gles2)
|
|
|
|
g_module_symbol (module_gles2, name, &result);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif // __APPLE__
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
result = gst_gl_context_default_get_proc_address (gl_api, name);
|
2014-05-01 12:36:54 +00:00
|
|
|
|
|
|
|
g_once (&g_once, load_egl_module, NULL);
|
|
|
|
|
|
|
|
if (!result && module_egl) {
|
|
|
|
g_module_symbol (module_egl, name, &result);
|
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
2013-07-10 09:31:17 +00:00
|
|
|
/* FIXME: On Android this returns wrong addresses for non-EGL functions */
|
2014-03-18 00:08:50 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_ANDROID
|
2014-05-01 12:36:54 +00:00
|
|
|
if (!result && g_str_has_prefix (name, "egl")) {
|
2013-10-01 13:47:54 +00:00
|
|
|
#else
|
2014-05-01 12:36:54 +00:00
|
|
|
if (!result) {
|
|
|
|
result = eglGetProcAddress (name);
|
2013-10-01 13:47:54 +00:00
|
|
|
#endif
|
2014-05-01 12:36:54 +00:00
|
|
|
}
|
2013-07-03 07:12:39 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2014-05-14 07:59:52 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_gl_context_egl_check_feature (GstGLContext * context, const gchar * feature)
|
|
|
|
{
|
|
|
|
GstGLContextEGL *context_egl = GST_GL_CONTEXT_EGL (context);
|
|
|
|
|
|
|
|
if (g_strcmp0 (feature, "EGL_KHR_image_base") == 0) {
|
|
|
|
return context_egl->eglCreateImage != NULL &&
|
|
|
|
context_egl->eglDestroyImage != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-10-28 06:31:37 +00:00
|
|
|
|
|
|
|
guintptr
|
|
|
|
gst_gl_context_egl_get_current_context (void)
|
|
|
|
{
|
|
|
|
return (guintptr) eglGetCurrentContext ();
|
|
|
|
}
|