Title: [206213] trunk/Source/WebCore
Revision
206213
Author
commit-qu...@webkit.org
Date
2016-09-21 09:28:48 -0700 (Wed, 21 Sep 2016)

Log Message

[GTK] Build fails with GSTREAMER_GL enabled
https://bugs.webkit.org/show_bug.cgi?id=162337

Patch by Miguel Gomez <mago...@igalia.com> on 2016-09-21
Reviewed by Michael Catanzaro.

* platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
(WebCore::MediaPlayerPrivateGStreamerBase::ensureGstGLContext): Remove uneeded const.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (206212 => 206213)


--- trunk/Source/WebCore/ChangeLog	2016-09-21 16:26:13 UTC (rev 206212)
+++ trunk/Source/WebCore/ChangeLog	2016-09-21 16:28:48 UTC (rev 206213)
@@ -1,3 +1,13 @@
+2016-09-21  Miguel Gomez  <mago...@igalia.com>
+
+        [GTK] Build fails with GSTREAMER_GL enabled
+        https://bugs.webkit.org/show_bug.cgi?id=162337
+
+        Reviewed by Michael Catanzaro.
+
+        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
+        (WebCore::MediaPlayerPrivateGStreamerBase::ensureGstGLContext): Remove uneeded const.
+
 2016-09-21  Jer Noble  <jer.no...@apple.com>
 
         REGRESSION(r206127): ASSERTION FAILED: !isClosed() in WebCore::MediaSource::detachFromElement

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


--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2016-09-21 16:26:13 UTC (rev 206212)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2016-09-21 16:28:48 UTC (rev 206213)
@@ -252,7 +252,7 @@
     if (m_glContext)
         return true;
 
-    const auto& sharedDisplay = PlatformDisplay::sharedDisplayForCompositing();
+    auto& sharedDisplay = PlatformDisplay::sharedDisplayForCompositing();
     if (!m_glDisplay) {
 #if PLATFORM(X11)
         m_glDisplay = GST_GL_DISPLAY(gst_gl_display_x11_new_with_display(downcast<PlatformDisplayX11>(sharedDisplay).native()));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to