Title: [243493] trunk/Source/WebCore
Revision
243493
Author
commit-qu...@webkit.org
Date
2019-03-26 06:11:32 -0700 (Tue, 26 Mar 2019)

Log Message

Build failure with gstreamer 1.12.5 if USE_GSTREAMER_GL is enabled
https://bugs.webkit.org/show_bug.cgi?id=196178

Patch by Mike Gorse <mgo...@alum.wpi.edu> on 2019-03-26
Reviewed by Philippe Normand.

No new tests (build fix).

* platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
Include gst/gl/gl.h before including GraphicsContext3D.h.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (243492 => 243493)


--- trunk/Source/WebCore/ChangeLog	2019-03-26 12:09:50 UTC (rev 243492)
+++ trunk/Source/WebCore/ChangeLog	2019-03-26 13:11:32 UTC (rev 243493)
@@ -1,3 +1,15 @@
+2019-03-26  Mike Gorse  <mgo...@alum.wpi.edu>
+
+        Build failure with gstreamer 1.12.5 if USE_GSTREAMER_GL is enabled
+        https://bugs.webkit.org/show_bug.cgi?id=196178
+
+        Reviewed by Philippe Normand.
+
+        No new tests (build fix).
+
+        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
+        Include gst/gl/gl.h before including GraphicsContext3D.h.
+
 2019-03-26  Philippe Normand  <pnorm...@igalia.com>
 
         [GStreamer] Sound loop with Google Hangouts and WhatsApp notifications

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


--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2019-03-26 12:09:50 UTC (rev 243492)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2019-03-26 13:11:32 UTC (rev 243493)
@@ -29,7 +29,6 @@
 
 #include "GStreamerCommon.h"
 #include "GraphicsContext.h"
-#include "GraphicsContext3D.h"
 #include "ImageGStreamer.h"
 #include "ImageOrientation.h"
 #include "IntRect.h"
@@ -86,6 +85,7 @@
 #include <gst/gl/gl.h>
 #undef GST_USE_UNSTABLE_API
 
+#include "GraphicsContext3D.h"
 #include "GLContext.h"
 #if USE(GLX)
 #include "GLContextGLX.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to