mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gl/display: check the correct env variable for choosing an egl display
GST_GL_WINDOW is used for window system specific choices. An EGLDisplay can be created from window systems with egl support by using eglGetDisplay(). https://bugzilla.gnome.org/show_bug.cgi?id=729551
This commit is contained in:
parent
48f770a2df
commit
b694b292b9
1 changed files with 4 additions and 2 deletions
|
@ -120,7 +120,7 @@ GstGLDisplay *
|
|||
gst_gl_display_new (void)
|
||||
{
|
||||
GstGLDisplay *display = NULL;
|
||||
const gchar *user_choice;
|
||||
const gchar *user_choice, *platform_choice;
|
||||
static volatile gsize _init = 0;
|
||||
|
||||
if (g_once_init_enter (&_init)) {
|
||||
|
@ -130,6 +130,7 @@ gst_gl_display_new (void)
|
|||
}
|
||||
|
||||
user_choice = g_getenv ("GST_GL_WINDOW");
|
||||
platform_choice = g_getenv ("GST_GL_PLATFORM");
|
||||
GST_INFO ("creating a window, user choice:%s", user_choice);
|
||||
|
||||
#if GST_GL_HAVE_WINDOW_X11
|
||||
|
@ -137,7 +138,8 @@ gst_gl_display_new (void)
|
|||
display = GST_GL_DISPLAY (gst_gl_display_x11_new (NULL));
|
||||
#endif
|
||||
#if GST_GL_HAVE_PLATFORM_EGL
|
||||
if (!display && (!user_choice || g_strstr_len (user_choice, 3, "egl")))
|
||||
if (!display && (!platform_choice
|
||||
|| g_strstr_len (platform_choice, 3, "egl")))
|
||||
display = GST_GL_DISPLAY (gst_gl_display_egl_new ());
|
||||
#endif
|
||||
if (!display) {
|
||||
|
|
Loading…
Reference in a new issue