Title: [206861] trunk/Source/WebCore
Revision
206861
Author
[email protected]
Date
2016-10-06 03:44:31 -0700 (Thu, 06 Oct 2016)

Log Message

[GTK] Build fix for X11 and GStreamerGL after r183731
https://bugs.webkit.org/show_bug.cgi?id=163000

Reviewed by Philippe Normand.

* platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
Include gstgldisplay_egl.h if platform uses EGL.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (206860 => 206861)


--- trunk/Source/WebCore/ChangeLog	2016-10-06 10:38:13 UTC (rev 206860)
+++ trunk/Source/WebCore/ChangeLog	2016-10-06 10:44:31 UTC (rev 206861)
@@ -1,3 +1,13 @@
+2016-10-06  Gwang Yoon Hwang  <[email protected]>
+
+        [GTK] Build fix for X11 and GStreamerGL after r183731
+        https://bugs.webkit.org/show_bug.cgi?id=163000
+
+        Reviewed by Philippe Normand.
+
+        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
+        Include gstgldisplay_egl.h if platform uses EGL.
+
 2016-10-06  Mario Sanchez Prada  <[email protected]>
 
         [GStreamer] Can't play any video with GSTREAMER_GL enabled

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp (206860 => 206861)


--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2016-10-06 10:38:13 UTC (rev 206860)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2016-10-06 10:44:31 UTC (rev 206861)
@@ -54,7 +54,9 @@
 #if USE(GLX)
 #include "GLContextGLX.h"
 #include <gst/gl/x11/gstgldisplay_x11.h>
-#elif USE(EGL)
+#endif
+
+#if USE(EGL)
 #include "GLContextEGL.h"
 #include <gst/gl/egl/gstgldisplay_egl.h>
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to