glcontext: fix get_current_gl_api on x11/nvidia drivers
authorMatthew Waters <matthew@centricular.com>
Sat, 18 Jul 2015 07:19:18 +0000 (17:19 +1000)
committerMatthew Waters <matthew@centricular.com>
Sat, 18 Jul 2015 08:18:22 +0000 (18:18 +1000)
They require to get_proc_address some functions through the
platform specific {glX,egl}GetProcAddress rather than the default
GL library symbol lookup.

ext/gtk/gtkgstglwidget.c

index a17dd6b..c2cc46b 100644 (file)
@@ -477,7 +477,7 @@ _get_gl_context (GtkGstGLWidget * gst_widget)
 #if GST_GL_HAVE_WINDOW_X11 && defined (GDK_WINDOWING_X11)
   if (GST_IS_GL_DISPLAY_X11 (priv->display)) {
     platform = GST_GL_PLATFORM_GLX;
-    gl_api = gst_gl_context_get_current_gl_api (NULL, NULL);
+    gl_api = gst_gl_context_get_current_gl_api (platform, NULL, NULL);
     gl_handle = gst_gl_context_get_current_gl_context (platform);
     if (gl_handle)
       priv->other_context =
@@ -488,7 +488,7 @@ _get_gl_context (GtkGstGLWidget * gst_widget)
 #if GST_GL_HAVE_WINDOW_WAYLAND && defined (GDK_WINDOWING_WAYLAND)
   if (GST_IS_GL_DISPLAY_WAYLAND (priv->display)) {
     platform = GST_GL_PLATFORM_EGL;
-    gl_api = gst_gl_context_get_current_gl_api (NULL, NULL);
+    gl_api = gst_gl_context_get_current_gl_api (platform, NULL, NULL);
     gl_handle = gst_gl_context_get_current_gl_context (platform);
     if (gl_handle)
       priv->other_context =